Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: MacOS Install Deps
if: contains(matrix.os, 'macos')
Expand All @@ -48,7 +48,7 @@ jobs:
echo "CCACHE_DIR=${{ runner.temp }}/ccache" >> "$GITHUB_ENV"

- name: Restore Ccache cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
id: ccache-cache
with:
path: ${{ env.CCACHE_DIR }}
Expand All @@ -64,7 +64,7 @@ jobs:
cmake --build build -j$(nproc)

- name: Save Ccache cache
uses: actions/cache/save@v4
uses: actions/cache/save@v6
if: github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'
with:
path: ${{ env.CCACHE_DIR }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
BUILD_APP_TESTS: ON
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: recursive

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/depends-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: recursive

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
fi

- name: Restore depends sources cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
id: depends-sources-cache
with:
path: bitcoin/depends/sources
Expand All @@ -110,7 +110,7 @@ jobs:
${{ matrix.cache-id }}-depends-sources-

- name: Restore depends package cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
id: depends-built-cache
with:
path: bitcoin/depends/built
Expand All @@ -124,14 +124,14 @@ jobs:
${{ matrix.make }} -j"${JOBS}" HOST="${HOST}" DEBUG= LOG=1

- name: Save depends sources cache
uses: actions/cache/save@v4
uses: actions/cache/save@v6
if: github.event_name != 'pull_request' && steps.depends-sources-cache.outputs.cache-hit != 'true'
with:
path: bitcoin/depends/sources
key: ${{ steps.depends-sources-cache.outputs.cache-primary-key }}

- name: Save depends package cache
uses: actions/cache/save@v4
uses: actions/cache/save@v6
if: github.event_name != 'pull_request' && steps.depends-built-cache.outputs.cache-hit != 'true'
with:
path: bitcoin/depends/built
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/gui-functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: recursive

Expand All @@ -43,7 +43,7 @@ jobs:
qml6-module-qtquick-dialogs qml6-module-qtquick-templates

- name: Restore legacy bitcoind cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
id: legacy-bitcoind-cache
with:
path: releases/v${{ env.LEGACY_BITCOIND_VERSION }}
Expand Down Expand Up @@ -77,14 +77,14 @@ jobs:
"${legacy_dir}/bin/bitcoind" --version | head -n 1

- name: Save legacy bitcoind cache
uses: actions/cache/save@v4
uses: actions/cache/save@v6
if: github.event_name != 'pull_request' && steps.legacy-bitcoind-cache.outputs.cache-hit != 'true'
with:
path: releases/v${{ env.LEGACY_BITCOIND_VERSION }}
key: ${{ runner.os }}-legacy-bitcoind-v${{ env.LEGACY_BITCOIND_VERSION }}

- name: Restore bitcoin-qt compatibility cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
id: bitcoin-qt-compat-cache
with:
path: releases/v${{ env.QT_COMPAT_VERSION }}
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
"${compat_dir}/bin/bitcoin-qt" --version | head -n 1

- name: Save bitcoin-qt compatibility cache
uses: actions/cache/save@v4
uses: actions/cache/save@v6
if: github.event_name != 'pull_request' && steps.bitcoin-qt-compat-cache.outputs.cache-hit != 'true'
with:
path: releases/v${{ env.QT_COMPAT_VERSION }}
Expand Down
Loading