diff --git a/.github/workflows/bump_bundler_version.yml b/.github/workflows/bump_bundler_version.yml deleted file mode 100644 index 2fe0b6dd31..0000000000 --- a/.github/workflows/bump_bundler_version.yml +++ /dev/null @@ -1,60 +0,0 @@ -name: Bump Bundler Version - -on: - workflow_dispatch: - push: - branches: [ main ] - paths: - - '.ruby-version' - -jobs: - bump-bundler: - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - steps: - - uses: hmarr/debug-action@v3 - - uses: actions/checkout@v6 - - uses: ./.github/workflows/composite/setup - - name: Update BUNDLED WITH in Gemfile.lock - run: | - echo "Remove all bundler versions except the default one" - gem uninstall bundler -a -x - - ruby -v - bundler -v - - # We are modifying the Gemfile.lock, thus have to set frozen to false. - bundle config set frozen false - - BUNDLER_VERSION=$(ruby -rbundler -e 'puts Bundler::VERSION') - - echo "Update bundler version in Gemfile.lock" - bundle update --bundler=$BUNDLER_VERSION - - pushd docs/v3 - echo "Update bundler version in docs/v3/Gemfile.lock" - bundle update --bundler=$BUNDLER_VERSION - popd - - # Don't commit changes in vendor/bundle folder. - echo "vendor/bundle/" >> .git/info/exclude - - if git diff --quiet; then - echo "changes=false" >> $GITHUB_ENV - else - echo "changes=true" >> $GITHUB_ENV - fi - - name: Create or Update Pull Request - if: env.changes == 'true' - uses: peter-evans/create-pull-request@v8 - with: - branch: bump-bundler-version-${{ github.ref_name }} - title: "Automated Bump of Bundler Version in Gemfile.lock" - body: | - This PR updates Gemfile.lock and docs/v3/Gemfile.lock to use the default Bundler version. - labels: "needs_review" - commit-message: "Bump Bundler Version in Gemfile.lock and docs/v3/Gemfile.lock" - committer: "ari-wg-gitbot " - author: "ari-wg-gitbot " diff --git a/.ruby-version b/.ruby-version index f15386a5d5..5f6fc5edc2 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.2.10 +3.3.10 diff --git a/Gemfile.lock b/Gemfile.lock index f923480137..e6ba556890 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -705,4 +705,4 @@ DEPENDENCIES webrick (~> 1.9.2) BUNDLED WITH - 2.4.19 + 2.6.9