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] <support@github.com>
This commit is contained in:
dependabot[bot] 2026-08-08 13:10:20 +00:00 committed by daywalker90
parent 07bf8288f5
commit 0a078e0b76

View file

@ -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*