From 78974564bfa5d0726292a1109f3c7b70aa60e88f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 10:28:13 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 5 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/v5...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b769d44..9375ac9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,16 +30,16 @@ jobs: CARGO_CACHE: ${{ github.workspace }}/.cache/cargo-registry XWIN_CACHE: ${{ github.workspace }}/.cache/xwin steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: # The draft has no tag yet; build exactly the commit it is pinned to. ref: ${{ inputs.sha }} # The MSVC CRT/SDK download only changes when the xwin setup does. - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: .cache/xwin key: xwin-${{ hashFiles('bin/build') }} - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: .cache/cargo-registry key: cargo-registry-${{ hashFiles('Cargo.lock') }}