From 16e1d46360a2f0e4d85922703ae259d319e7a9df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 17:43:49 +0000 Subject: [PATCH 1/2] build(deps): Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/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/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31922c2..e3f923b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,7 +76,7 @@ jobs: .tmp/ci-shell-safe/npm \ .tmp/ci-shell-safe/pip \ .tmp/ci-shell-safe/terraform - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: | .tmp/ci-shell-safe/npm From 95f1d7b81436e6a8f26c93bc13ca1fb85404c4eb Mon Sep 17 00:00:00 2001 From: Hephaestus Date: Sat, 27 Jun 2026 13:57:05 +0000 Subject: [PATCH 2/2] test: expect actions/cache v6 --- test/workflow.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/workflow.test.ts b/test/workflow.test.ts index 5699678..2e6c2f7 100644 --- a/test/workflow.test.ts +++ b/test/workflow.test.ts @@ -177,7 +177,7 @@ describe("CI workflow", () => { const contractJob = workflow.jobs.shell_safe_contract_trusted; const steps = contractJob.steps as Array>; - const cacheStep = steps.find((step) => step.uses === "actions/cache@v5"); + const cacheStep = steps.find((step) => step.uses === "actions/cache@v6"); const verifyToolchainStep = steps.find( (step) => step.name === "Verify built-in shell-safe toolchain" );