mirror of
https://github.com/daywalker90/cln-nip47.git
synced 2026-08-13 12:33:43 +02:00
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:
parent
07bf8288f5
commit
0a078e0b76
1 changed files with 4 additions and 4 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -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*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue