From 60e717422106a6123949221a8d58fece85433def Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 22:22:16 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 12 ++++++------ .github/workflows/pronto.yaml | 2 +- .github/workflows/website.yaml | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 489f64f3c22..aa0ee363543 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.4 @@ -20,7 +20,7 @@ jobs: with: redis-version: "7.x" - run: redis-cli ping - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.4 @@ -75,7 +75,7 @@ jobs: if: ${{ !!matrix.redis }} - run: redis-cli ping if: ${{ !!matrix.redis }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} @@ -85,7 +85,7 @@ jobs: javascript_test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v6 with: node-version: latest @@ -125,7 +125,7 @@ jobs: - run: echo GRAPHQL_CPARSER=1 > $GITHUB_ENV - run: echo ISOLATION_LEVEL_FIBER=1 > $GITHUB_ENV if: ${{ !!matrix.isolation_level_fiber }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.3" @@ -146,7 +146,7 @@ jobs: - 27017:27017 steps: - run: echo BUNDLE_GEMFILE=${{ matrix.gemfile }} > $GITHUB_ENV - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.4 diff --git a/.github/workflows/pronto.yaml b/.github/workflows/pronto.yaml index 9799b245522..1bf7c16047e 100644 --- a/.github/workflows/pronto.yaml +++ b/.github/workflows/pronto.yaml @@ -8,7 +8,7 @@ jobs: steps: - run: echo BUNDLE_GEMFILE=gemfiles/pronto.gemfile > $GITHUB_ENV - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - run: git fetch --no-tags --prune --unshallow origin +refs/heads/*:refs/remotes/origin/* - name: Setup Ruby uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/website.yaml b/.github/workflows/website.yaml index 64b2c0cd7ef..8ea42d43241 100644 --- a/.github/workflows/website.yaml +++ b/.github/workflows/website.yaml @@ -27,9 +27,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout master - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Checkout GitHub pages branch - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: gh-pages ref: gh-pages @@ -61,11 +61,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout release tag - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.GITHUB_REF }} - name: Checkout GitHub pages branch - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: gh-pages ref: gh-pages