aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authortobtoht <tob@featherwallet.org>2026-04-23 13:03:07 +0200
committertobtoht <tob@featherwallet.org>2026-04-23 13:03:07 +0200
commit02f5c88748c0cd3cdba1f002636d31b311ab41a8 (patch)
treec551b9bc509283439eb369e3af68874255965435 /.github
parent9d0c50fab5bd7373b636bca29611c78cf97f28d3 (diff)
downloadmonzero-core-02f5c88748c0cd3cdba1f002636d31b311ab41a8.tar.gz
monzero-core-02f5c88748c0cd3cdba1f002636d31b311ab41a8.tar.xz
monzero-core-02f5c88748c0cd3cdba1f002636d31b311ab41a8.zip
ci: bump deprecated actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml24
-rw-r--r--.github/workflows/depends.yml10
-rw-r--r--.github/workflows/gitian.yml2
3 files changed, 18 insertions, 18 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 489d0ff78..dbfbe13c3 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -32,10 +32,10 @@ jobs:
env:
CCACHE_TEMPDIR: /tmp/.ccache-temp
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
submodules: recursive
- - uses: actions/cache@v4
+ - uses: actions/cache@v5
with:
path: /Users/runner/Library/Caches/ccache
key: ccache-${{ runner.os }}-build-${{ github.sha }}
@@ -61,10 +61,10 @@ jobs:
run:
shell: msys2 {0}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
submodules: recursive
- - uses: actions/cache@v4
+ - uses: actions/cache@v5
with:
path: C:\Users\runneradmin\.ccache
key: ccache-${{ runner.os }}-build-${{ github.sha }}
@@ -89,7 +89,7 @@ jobs:
run: pacman -Syyu --noconfirm base-devel git cmake boost boost-libs openssl zeromq unbound libsodium readline expat gtest python3 doxygen graphviz hidapi libusb protobuf
- name: configure git
run: git config --global --add safe.directory '*'
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
submodules: recursive
- uses: ./.github/actions/set-make-job-count
@@ -115,7 +115,7 @@ jobs:
run: ${{env.APT_INSTALL_LINUX}}
- name: configure git
run: git config --global --add safe.directory '*'
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
submodules: recursive
- uses: ./.github/actions/set-make-job-count
@@ -153,10 +153,10 @@ jobs:
run: ${{env.APT_INSTALL_LINUX}}
- name: configure git
run: git config --global --add safe.directory '*'
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
submodules: recursive
- - uses: actions/cache@v4
+ - uses: actions/cache@v5
with:
path: ~/.ccache
key: ccache-${{ matrix.container }}-build-${{ github.sha }}
@@ -200,10 +200,10 @@ jobs:
run: pip install requests psutil monotonic zmq deepdiff
- name: configure git
run: git config --global --add safe.directory '*'
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
submodules: recursive
- - uses: actions/cache@v4
+ - uses: actions/cache@v5
with:
path: ~/.ccache
key: ccache-${{ matrix.container }}-build-${{ github.sha }}
@@ -237,7 +237,7 @@ jobs:
run: apt install -y git python3-pip
- name: configure git
run: git config --global --add safe.directory '*'
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: recursive
@@ -248,7 +248,7 @@ jobs:
export OUTPUT="$VERSION.tar"
echo "OUTPUT=$OUTPUT" >> $GITHUB_ENV
git-archive-all --prefix "$VERSION/" --force-submodules "$OUTPUT"
- - uses: actions/upload-artifact@v4
+ - uses: actions/upload-artifact@v7
with:
name: ${{ env.OUTPUT }}
path: ${{ env.OUTPUT }}
diff --git a/.github/workflows/depends.yml b/.github/workflows/depends.yml
index c754260b2..2be2a60e5 100644
--- a/.github/workflows/depends.yml
+++ b/.github/workflows/depends.yml
@@ -68,20 +68,20 @@ jobs:
run: apt update; apt -y install build-essential libtool cmake autotools-dev automake pkg-config python3 gperf bsdmainutils curl git ca-certificates unzip ccache ${{ matrix.toolchain.packages }}
- name: configure git
run: git config --global --add safe.directory '*'
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: recursive
# Most volatile cache
- name: ccache
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: ~/.ccache
key: ccache-${{ matrix.toolchain.host }}-${{ github.sha }}
restore-keys: ccache-${{ matrix.toolchain.host }}-
# Less volatile cache
- name: depends cache
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: contrib/depends/built
key: depends-${{ matrix.toolchain.host }}-${{ hashFiles('contrib/depends/packages/*') }}
@@ -90,7 +90,7 @@ jobs:
depends-${{ matrix.toolchain.host }}-
# Static cache
- name: OSX SDK cache
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: contrib/depends/sdk-sources
key: sdk-${{ matrix.toolchain.host }}-${{ matrix.toolchain.osx_sdk }}
@@ -104,7 +104,7 @@ jobs:
run: |
${{env.CCACHE_SETTINGS}}
make depends target=${{ matrix.toolchain.host }} -j4
- - uses: actions/upload-artifact@v4
+ - uses: actions/upload-artifact@v7
if: ${{ matrix.toolchain.host == 'x86_64-w64-mingw32' || matrix.toolchain.host == 'x86_64-apple-darwin11' || matrix.toolchain.host == 'x86_64-unknown-linux-gnu' }}
with:
name: ${{ matrix.toolchain.name }}
diff --git a/.github/workflows/gitian.yml b/.github/workflows/gitian.yml
index 46b23188f..2d2af5799 100644
--- a/.github/workflows/gitian.yml
+++ b/.github/workflows/gitian.yml
@@ -42,7 +42,7 @@ jobs:
echo \`\`\` >> $GITHUB_STEP_SUMMARY
shasum -a256 * >> $GITHUB_STEP_SUMMARY
echo \`\`\` >> $GITHUB_STEP_SUMMARY
- - uses: actions/upload-artifact@v4
+ - uses: actions/upload-artifact@v7
with:
name: ${{ matrix.operating-system.name }}
path: |