From caf84780f63ba75ce3a9b6da4db25cde14193b82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 17:15:26 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 in the all group across 1 directory Bumps the all group with 1 update in the / directory: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/axe.yml | 2 +- .github/workflows/ci.yml | 6 +++--- .github/workflows/codeql.yml | 2 +- .github/workflows/deploy_preview.yml | 2 +- .github/workflows/deploy_production.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/welcome.yml | 6 +++--- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/axe.yml b/.github/workflows/axe.yml index 05f188922e..701c77b3c3 100644 --- a/.github/workflows/axe.yml +++ b/.github/workflows/axe.yml @@ -10,7 +10,7 @@ jobs: axe: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Get changed files diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1bb0ece85..b763164556 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: stylelint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v6 with: node-version: 20 @@ -30,7 +30,7 @@ jobs: eslint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v6 with: node-version: 20 @@ -42,7 +42,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v6 with: node-version: 20 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index b4fc7b7d00..30af3c59ac 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/deploy_preview.yml b/.github/workflows/deploy_preview.yml index bd7cde73b7..ddf220ed6b 100644 --- a/.github/workflows/deploy_preview.yml +++ b/.github/workflows/deploy_preview.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest needs: deploy steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: chrnorm/deployment-action@v2.0.8 name: Create GitHub deployment for storybook diff --git a/.github/workflows/deploy_production.yml b/.github/workflows/deploy_production.yml index 1e8b080017..db608a3f8d 100644 --- a/.github/workflows/deploy_production.yml +++ b/.github/workflows/deploy_production.yml @@ -23,7 +23,7 @@ jobs: # If it's 0, we deploy. should_deploy: ${{ steps.changeset-count.outputs.change_count == 0 }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - id: changeset-count run: echo "::set-output name=change_count::$(ls .changeset/*.md | grep -v README | wc -l | xargs)" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ebae8c4d7c..3cc2346e0c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 @@ -61,7 +61,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 diff --git a/.github/workflows/welcome.yml b/.github/workflows/welcome.yml index 713febe5b3..e7487ac517 100644 --- a/.github/workflows/welcome.yml +++ b/.github/workflows/welcome.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Node.js uses: actions/setup-node@v6 @@ -56,7 +56,7 @@ jobs: - if: "contains(github.event.pull_request.labels.*.name, 'skip changeset')" run: echo "passed"; exit 0; - if: "!contains(github.event.pull_request.labels.*.name, 'skip changeset')" - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.pull_request.head.sha }} - if: "!contains(github.event.pull_request.labels.*.name, 'skip changeset')" @@ -67,7 +67,7 @@ jobs: needs: release-template runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v6 with: node-version: 18