From 6b63fb57960956eec68f70b177cbce31ec199a81 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 09:18:23 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 in the github-actions group Bumps the github-actions group with 1 update: [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: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/action-release-tag.yml | 2 +- .github/workflows/actionlint.yml | 2 +- .github/workflows/coverage.yml | 2 +- .github/workflows/docc-github-pages.yml | 2 +- .github/workflows/docker-build-and-push.yml | 2 +- .github/workflows/docker-compose-test.yml | 2 +- .github/workflows/eslint.yml | 2 +- .github/workflows/firebase-deploy.yml | 2 +- .github/workflows/firebase-emulators-exec.yml | 2 +- .github/workflows/markdown-links.yml | 2 +- .github/workflows/nextjs-github-pages.yml | 2 +- .github/workflows/npm-publish.yml | 2 +- .github/workflows/npm-test-coverage.yml | 2 +- .github/workflows/periphery.yml | 2 +- .github/workflows/reuse.yml | 2 +- .github/workflows/swift-api-breaking-changes.yml | 2 +- .github/workflows/swift-package-breaking-changes.yml | 2 +- .github/workflows/swift-package-setup.yml | 2 +- .github/workflows/swift-test.yml | 2 +- .github/workflows/swiftlint.yml | 2 +- .github/workflows/validate.yml | 4 ++-- .github/workflows/xcarchive.yml | 2 +- .github/workflows/xcframework-release.yml | 2 +- .github/workflows/xcframework.yml | 2 +- .github/workflows/xcode-deploy.yml | 2 +- .github/workflows/xcodebuild.yml | 2 +- 26 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/action-release-tag.yml b/.github/workflows/action-release-tag.yml index d26b037..6f33a46 100644 --- a/.github/workflows/action-release-tag.yml +++ b/.github/workflows/action-release-tag.yml @@ -31,7 +31,7 @@ jobs: name: Tag Action Release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.access-token || github.token }} diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index d01116a..65c676d 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -32,7 +32,7 @@ jobs: name: Run actionlint runs-on: ${{ fromJson(inputs.runs_on_labels) }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v6 with: diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c22f519..b948ba9 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -39,7 +39,7 @@ jobs: name: Merge and Upload Coverage runs-on: macos-26 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: 26.0.1 diff --git a/.github/workflows/docc-github-pages.yml b/.github/workflows/docc-github-pages.yml index 34175b8..59f34f7 100644 --- a/.github/workflows/docc-github-pages.yml +++ b/.github/workflows/docc-github-pages.yml @@ -65,7 +65,7 @@ jobs: name: ${{ !inputs.dryrun && 'github-pages' || '' }} url: ${{ !inputs.dryrun && steps.deployment.outputs.page_url || '' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: ${{ inputs.xcodeversion }} diff --git a/.github/workflows/docker-build-and-push.yml b/.github/workflows/docker-build-and-push.yml index cedbc26..998ed2a 100644 --- a/.github/workflows/docker-build-and-push.yml +++ b/.github/workflows/docker-build-and-push.yml @@ -82,7 +82,7 @@ jobs: run: | echo "github-hosted: ${{ runner.environment == 'github-hosted' }}" echo "environment: ${{ inputs.environment }}" - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Docker meta id: meta uses: docker/metadata-action@v6 diff --git a/.github/workflows/docker-compose-test.yml b/.github/workflows/docker-compose-test.yml index b7acd56..7c5e026 100644 --- a/.github/workflows/docker-compose-test.yml +++ b/.github/workflows/docker-compose-test.yml @@ -47,7 +47,7 @@ jobs: working-directory: ${{ inputs.workingDirectory }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Create .env file run: | echo "${{ secrets.ENV_FILE }}" > ${{ inputs.workingDirectory }}/.env diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 6c72286..5d5d949 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -27,7 +27,7 @@ jobs: name: Run ESLint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Node.js uses: actions/setup-node@v6 with: diff --git a/.github/workflows/firebase-deploy.yml b/.github/workflows/firebase-deploy.yml index 88dcd65..2cd1a79 100644 --- a/.github/workflows/firebase-deploy.yml +++ b/.github/workflows/firebase-deploy.yml @@ -72,7 +72,7 @@ jobs: working-directory: ${{ inputs.path }} environment: ${{ inputs.environment }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check environment run: | echo "github-hosted: ${{ runner.environment == 'github-hosted' }}" diff --git a/.github/workflows/firebase-emulators-exec.yml b/.github/workflows/firebase-emulators-exec.yml index dd474d7..2d24149 100644 --- a/.github/workflows/firebase-emulators-exec.yml +++ b/.github/workflows/firebase-emulators-exec.yml @@ -89,7 +89,7 @@ jobs: run: working-directory: ${{ inputs.path }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: ${{ inputs.checkout_submodules }} lfs: ${{ inputs.checkout_lfs }} diff --git a/.github/workflows/markdown-links.yml b/.github/workflows/markdown-links.yml index 829eaf9..59bfdac 100644 --- a/.github/workflows/markdown-links.yml +++ b/.github/workflows/markdown-links.yml @@ -26,7 +26,7 @@ jobs: name: Check Markdown Links runs-on: ${{ fromJson(inputs.runs_on_labels) }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check and Create Linkspector Configuration run: | CONFIG_FILE=".linkspector.yml" diff --git a/.github/workflows/nextjs-github-pages.yml b/.github/workflows/nextjs-github-pages.yml index dfb5718..655eabc 100644 --- a/.github/workflows/nextjs-github-pages.yml +++ b/.github/workflows/nextjs-github-pages.yml @@ -33,7 +33,7 @@ jobs: name: Build Next.js Site runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Node.js uses: actions/setup-node@v6 with: diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 9705cb0..15c2d17 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -63,7 +63,7 @@ jobs: run: working-directory: ${{ inputs.workingDirectory }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v6 with: cache: 'npm' diff --git a/.github/workflows/npm-test-coverage.yml b/.github/workflows/npm-test-coverage.yml index 6435ec2..30b5888 100644 --- a/.github/workflows/npm-test-coverage.yml +++ b/.github/workflows/npm-test-coverage.yml @@ -51,7 +51,7 @@ jobs: run: working-directory: ${{ inputs.working-directory }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check environment run: | echo "github-hosted: ${{ runner.environment == 'github-hosted' }}" diff --git a/.github/workflows/periphery.yml b/.github/workflows/periphery.yml index 4807d9a..b70ea5a 100644 --- a/.github/workflows/periphery.yml +++ b/.github/workflows/periphery.yml @@ -47,7 +47,7 @@ jobs: run: working-directory: ${{ inputs.path }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: ${{ inputs.xcodeversion }} diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index ec9dc9e..9e767b1 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -19,6 +19,6 @@ jobs: name: Check REUSE Compliance runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check REUSE Compliance uses: fsfe/reuse-action@v6 diff --git a/.github/workflows/swift-api-breaking-changes.yml b/.github/workflows/swift-api-breaking-changes.yml index 0114024..849912a 100644 --- a/.github/workflows/swift-api-breaking-changes.yml +++ b/.github/workflows/swift-api-breaking-changes.yml @@ -34,7 +34,7 @@ jobs: name: Diagnose Swift API Breaking Changes runs-on: ${{ fromJson(inputs.runsonlabels) }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Fetch base branch run: git fetch origin "${{ inputs.branch }}:${{ inputs.branch }}" diff --git a/.github/workflows/swift-package-breaking-changes.yml b/.github/workflows/swift-package-breaking-changes.yml index 9f665bd..f03158c 100644 --- a/.github/workflows/swift-package-breaking-changes.yml +++ b/.github/workflows/swift-package-breaking-changes.yml @@ -50,7 +50,7 @@ jobs: name: Diagnose Swift Package API Breaking Changes runs-on: ${{ fromJson(inputs.runsonlabels) }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Fetch base branch run: git fetch origin "${{ inputs.branch }}:${{ inputs.branch }}" diff --git a/.github/workflows/swift-package-setup.yml b/.github/workflows/swift-package-setup.yml index a765006..4cd6f34 100644 --- a/.github/workflows/swift-package-setup.yml +++ b/.github/workflows/swift-package-setup.yml @@ -56,7 +56,7 @@ jobs: platform_name: ${{ steps.parse.outputs.platform_name }} platform_version: ${{ steps.parse.outputs.platform_version }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Parse package manifest id: parse run: | diff --git a/.github/workflows/swift-test.yml b/.github/workflows/swift-test.yml index b994009..e2f64eb 100644 --- a/.github/workflows/swift-test.yml +++ b/.github/workflows/swift-test.yml @@ -90,7 +90,7 @@ jobs: working-directory: ${{ inputs.path }} environment: ${{ inputs.environment }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # This is GitHub's way of implementing ternary expressions (see https://docs.github.com/en/actions/learn-github-actions/expressions) token: ${{ secrets.CHECKOUT_TOKEN != '' && secrets.CHECKOUT_TOKEN || github.token }} diff --git a/.github/workflows/swiftlint.yml b/.github/workflows/swiftlint.yml index 464f808..e749348 100644 --- a/.github/workflows/swiftlint.yml +++ b/.github/workflows/swiftlint.yml @@ -35,7 +35,7 @@ jobs: run: working-directory: ${{ inputs.path }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Run SwiftLint diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 94ef1ed..e334574 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 - name: Install yamllint @@ -49,7 +49,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check trailing whitespace run: | if git grep -nI '[[:blank:]]$' -- .; then diff --git a/.github/workflows/xcarchive.yml b/.github/workflows/xcarchive.yml index 73aff1c..a8d1f61 100644 --- a/.github/workflows/xcarchive.yml +++ b/.github/workflows/xcarchive.yml @@ -70,7 +70,7 @@ jobs: matrix: sdk: ${{ fromJson(inputs.sdk) }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable diff --git a/.github/workflows/xcframework-release.yml b/.github/workflows/xcframework-release.yml index 7fc3812..38a0037 100644 --- a/.github/workflows/xcframework-release.yml +++ b/.github/workflows/xcframework-release.yml @@ -50,7 +50,7 @@ jobs: name: Release XCFramework runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ secrets.access-token || github.token }} - name: Download artifacts diff --git a/.github/workflows/xcframework.yml b/.github/workflows/xcframework.yml index d3f8e41..7ccd1fc 100644 --- a/.github/workflows/xcframework.yml +++ b/.github/workflows/xcframework.yml @@ -79,7 +79,7 @@ jobs: runs-on: ${{ fromJson(inputs.runsonlabels) }} needs: build-xcarchive steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ secrets.access-token || github.token }} - uses: maxim-lobanov/setup-xcode@v1 diff --git a/.github/workflows/xcode-deploy.yml b/.github/workflows/xcode-deploy.yml index 6835d99..7db2c58 100644 --- a/.github/workflows/xcode-deploy.yml +++ b/.github/workflows/xcode-deploy.yml @@ -125,7 +125,7 @@ jobs: working-directory: ${{ inputs.path }} environment: ${{ inputs.environment }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # This is GitHub's way of implementing ternary expressions (see https://docs.github.com/en/actions/learn-github-actions/expressions) token: ${{ secrets.CHECKOUT_TOKEN != '' && secrets.CHECKOUT_TOKEN || github.token }} diff --git a/.github/workflows/xcodebuild.yml b/.github/workflows/xcodebuild.yml index 1ae0b57..7cbcca5 100644 --- a/.github/workflows/xcodebuild.yml +++ b/.github/workflows/xcodebuild.yml @@ -128,7 +128,7 @@ jobs: run: working-directory: ${{ inputs.path }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # This is GitHub's way of implementing ternary expressions (see https://docs.github.com/en/actions/learn-github-actions/expressions) token: ${{ secrets.CHECKOUT_TOKEN != '' && secrets.CHECKOUT_TOKEN || github.token }}