From 89d2de75999a7a0571c62733b6e8a8a16a7e3ea4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 04:44:03 +0000 Subject: [PATCH] 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] --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 1e236e4..7546254 100644 --- a/action.yml +++ b/action.yml @@ -45,7 +45,7 @@ runs: - name: Restore Cache id: cache if: inputs.cache == 'true' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.binaryen key: ${{ steps.source.outputs.key }} @@ -100,7 +100,7 @@ runs: fi - name: Save Cache if: steps.cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ~/.binaryen key: ${{ steps.source.outputs.key }}