From 0a078e0b76e5c7aa9c4816133688a381ff8af17e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Aug 2026 13:10:20 +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] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82b3448..b4b6a60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: - name: Restore CLN cache id: cache-cln - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | /usr/local/bin/lightning* @@ -75,7 +75,7 @@ jobs: - name: Restore bitcoind cache id: cache-bitcoind - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: /usr/local/bin/bitcoin* key: cache-bitcoind-${{ matrix.bitcoind-version }}-${{ steps.exact_versions.outputs.os_version }} @@ -99,7 +99,7 @@ jobs: - name: Save bitcoind cache id: save-cache-bitcoind if : ${{ success() && steps.cache-bitcoind.outputs.cache-hit != 'true'}} - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: /usr/local/bin/bitcoin* key: ${{ steps.cache-bitcoind.outputs.cache-primary-key }} @@ -117,7 +117,7 @@ jobs: - name: Save CLN cache id: save-cache-cln if : ${{ success() && steps.cache-cln.outputs.cache-hit != 'true' }} - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | /usr/local/bin/lightning*