diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3bbd3d..3c16848 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,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* @@ -69,7 +69,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 }} @@ -93,7 +93,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 }} @@ -111,7 +111,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*