From 187b501e75b076d10325955e864a467e9e792df9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 14:33:17 +0000 Subject: [PATCH] build(deps): 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/auto-release-rc.yml | 2 +- .github/workflows/auto-release.yml | 2 +- .github/workflows/build-installers.yml | 2 +- .github/workflows/check-commit-signing.yml | 2 +- .github/workflows/dependency-review.yml | 2 +- .github/workflows/ensure-version-increment.yml | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/auto-release-rc.yml b/.github/workflows/auto-release-rc.yml index 383061df..49e9c1cf 100644 --- a/.github/workflows/auto-release-rc.yml +++ b/.github/workflows/auto-release-rc.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout current branch - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # Need PACKAGE_ADMIN_PAT token so when the tag is created, the tag automation runs token: ${{ secrets.REPO_COMMIT }} diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 2462f134..807d7578 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout current branch - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # Need PACKAGE_ADMIN_PAT token so when the tag is created, the tag automation runs token: ${{ secrets.REPO_COMMIT }} diff --git a/.github/workflows/build-installers.yml b/.github/workflows/build-installers.yml index 2baae1e0..b2c83bde 100644 --- a/.github/workflows/build-installers.yml +++ b/.github/workflows/build-installers.yml @@ -91,7 +91,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/check-commit-signing.yml b/.github/workflows/check-commit-signing.yml index bb193697..fa8e21e0 100644 --- a/.github/workflows/check-commit-signing.yml +++ b/.github/workflows/check-commit-signing.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 130d7398..4af73d92 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout Repository" - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: "Dependency Review" uses: actions/dependency-review-action@v4 diff --git a/.github/workflows/ensure-version-increment.yml b/.github/workflows/ensure-version-increment.yml index 973f095a..30b5e2a1 100644 --- a/.github/workflows/ensure-version-increment.yml +++ b/.github/workflows/ensure-version-increment.yml @@ -19,12 +19,12 @@ jobs: - uses: Chia-Network/actions/clean-workspace@main - name: Checkout current branch - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: branch-repo - name: Checkout main - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: main path: main-repo