From 79dbf30b01cc7d56e83c658744eee68258c87fde Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 06:09:37 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test-action-selfhosted.yaml | 4 ++-- .github/workflows/test-action.yaml | 4 ++-- action.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-action-selfhosted.yaml b/.github/workflows/test-action-selfhosted.yaml index 717511c..e17de2b 100644 --- a/.github/workflows/test-action-selfhosted.yaml +++ b/.github/workflows/test-action-selfhosted.yaml @@ -32,7 +32,7 @@ jobs: deps: kscript cache: false - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.kscript key: ${{ runner.os }}-${{ github.action }}-kscript @@ -53,7 +53,7 @@ jobs: - uses: ./ with: deps: kscript - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.kscript key: ${{ runner.os }}-${{ github.action }}-kscript diff --git a/.github/workflows/test-action.yaml b/.github/workflows/test-action.yaml index e1c65e5..7172db2 100644 --- a/.github/workflows/test-action.yaml +++ b/.github/workflows/test-action.yaml @@ -31,7 +31,7 @@ jobs: with: deps: kscript - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.kscript key: ${{ runner.os }}-${{ github.action }}-kscript @@ -52,7 +52,7 @@ jobs: - uses: ./ with: deps: kscript - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.kscript key: ${{ runner.os }}-${{ github.action }}-kscript diff --git a/action.yml b/action.yml index 910dd84..80f90f5 100644 --- a/action.yml +++ b/action.yml @@ -31,7 +31,7 @@ runs: echo "path=$CACHE_PATH" >> $GITHUB_OUTPUT - name: Restore sdkman cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.prepare.outputs.path }} key: ${{ runner.os }}-${{ github.action }}-${{ steps.prepare.outputs.hash }}