From b4736c56712e04827f6bafaff21be0b6cb4cfdde Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 05:33:24 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 6 to 7 in the all-actions group Bumps the all-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: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f16c53..852cd21 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: outputs: code: ${{ steps.filter.outputs.code }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: dorny/paths-filter@v4 id: filter with: @@ -36,7 +36,7 @@ jobs: ZIG_GLOBAL_CACHE_DIR: ${{ github.workspace }}/architect/.zig-cache ZIG_LOCAL_CACHE_DIR: ${{ github.workspace }}/architect/.zig-cache/local steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: path: architect diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a762283..ef3dd29 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -31,7 +31,7 @@ jobs: # and thinking it is its own release tag. GIT_CEILING_DIRECTORIES: ${{ github.workspace }}/architect/.zig-cache steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: path: architect @@ -105,7 +105,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: main token: ${{ secrets.PAT_TOKEN }}