@@ -16,17 +16,17 @@ jobs:
1616 runs-on : ubuntu-24.04
1717
1818 steps :
19- - uses : actions/checkout@v4
19+ - uses : actions/checkout@v6
2020 - name : Check swift codestyle
21- uses : cirruslabs/ swiftlint-action@v1
21+ uses : docker://ghcr.io/realm/ swiftlint:latest
2222 with :
2323 args : --config .swiftlint.yml --strict
2424
2525 cargo-format :
2626 name : Cargo Format
2727 runs-on : ubuntu-latest
2828 steps :
29- - uses : actions/checkout@v4
29+ - uses : actions/checkout@v6
3030 - uses : dtolnay/rust-toolchain@nightly
3131 with :
3232 components : rustfmt
@@ -42,14 +42,14 @@ jobs:
4242 config : [debug, release]
4343 steps :
4444 - name : Checkout Code
45- uses : actions/checkout@v4
45+ uses : actions/checkout@v6
4646 with :
4747 submodules : recursive
4848 - run : sudo apt-get update
4949 - uses : awalsh128/cache-apt-pkgs-action@latest
5050 with :
5151 packages : librocksdb-dev libzstd-dev libbz2-dev liblz4-dev libjemalloc-dev
52- - uses : aws-actions/configure-aws-credentials@v4
52+ - uses : aws-actions/configure-aws-credentials@v6
5353 with :
5454 aws-region : us-east-2
5555 - name : Setup Swift
6363 # SPM caching disabled due to 5.7 GB size causing 7+ minute upload delays
6464 # The cache save/upload time exceeds the build time, making caching counterproductive
6565 - name : Cache Cargo
66- uses : actions/cache@v4
66+ uses : actions/cache@v5
6767 with :
6868 path : |
6969 ~/.cargo/bin/
@@ -73,28 +73,28 @@ jobs:
7373 target/
7474 key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
7575 - name : Cache bandersnatch_vrfs static lib
76- uses : actions/cache@v4
76+ uses : actions/cache@v5
7777 with :
7878 path : .lib/libbandersnatch_vrfs.a
7979 key : ${{ runner.os }}-libs-libbandersnatch-${{ hashFiles('Utils/Sources/bandersnatch/**') }}
8080 restore-keys : |
8181 ${{ runner.os }}-libs-libbandersnatch
8282 - name : Cache bls static lib
83- uses : actions/cache@v4
83+ uses : actions/cache@v5
8484 with :
8585 path : .lib/libbls.a
8686 key : ${{ runner.os }}-libs-libbls-${{ hashFiles('Utils/Sources/bls/**') }}
8787 restore-keys : |
8888 ${{ runner.os }}-libs-libbls
8989 - name : Cache erasure-coding static lib
90- uses : actions/cache@v4
90+ uses : actions/cache@v5
9191 with :
9292 path : .lib/libec.a
9393 key : ${{ runner.os }}-libs-libec-${{ hashFiles('Utils/Sources/erasure-coding/**') }}
9494 restore-keys : |
9595 ${{ runner.os }}-libs-libec
9696 - name : Cache ed25519-zebra static lib
97- uses : actions/cache@v4
97+ uses : actions/cache@v5
9898 with :
9999 path : .lib/libed25519_zebra_ffi.a
100100 key : ${{ runner.os }}-libs-libed25519-${{ hashFiles('Utils/Sources/ed25519-zebra/**') }}
@@ -160,14 +160,14 @@ jobs:
160160 - jit-sandbox
161161 steps :
162162 - name : Checkout Code
163- uses : actions/checkout@v4
163+ uses : actions/checkout@v6
164164 with :
165165 submodules : recursive
166166 - run : sudo apt-get update
167167 - uses : awalsh128/cache-apt-pkgs-action@latest
168168 with :
169169 packages : librocksdb-dev libzstd-dev libbz2-dev liblz4-dev libjemalloc-dev
170- - uses : aws-actions/configure-aws-credentials@v4
170+ - uses : aws-actions/configure-aws-credentials@v6
171171 with :
172172 aws-region : us-east-2
173173 - name : Setup Swift
@@ -179,7 +179,7 @@ jobs:
179179 echo "Detected Swift version: $SWIFT_VERSION"
180180 echo "version=$SWIFT_VERSION" >> $GITHUB_OUTPUT
181181 - name : Cache Cargo
182- uses : actions/cache@v4
182+ uses : actions/cache@v5
183183 with :
184184 path : |
185185 ~/.cargo/bin/
@@ -189,28 +189,28 @@ jobs:
189189 target/
190190 key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
191191 - name : Cache bandersnatch_vrfs static lib
192- uses : actions/cache@v4
192+ uses : actions/cache@v5
193193 with :
194194 path : .lib/libbandersnatch_vrfs.a
195195 key : ${{ runner.os }}-libs-libbandersnatch-${{ hashFiles('Utils/Sources/bandersnatch/**') }}
196196 restore-keys : |
197197 ${{ runner.os }}-libs-libbandersnatch
198198 - name : Cache bls static lib
199- uses : actions/cache@v4
199+ uses : actions/cache@v5
200200 with :
201201 path : .lib/libbls.a
202202 key : ${{ runner.os }}-libs-libbls-${{ hashFiles('Utils/Sources/bls/**') }}
203203 restore-keys : |
204204 ${{ runner.os }}-libs-libbls
205205 - name : Cache erasure-coding static lib
206- uses : actions/cache@v4
206+ uses : actions/cache@v5
207207 with :
208208 path : .lib/libec.a
209209 key : ${{ runner.os }}-libs-libec-${{ hashFiles('Utils/Sources/erasure-coding/**') }}
210210 restore-keys : |
211211 ${{ runner.os }}-libs-libec
212212 - name : Cache ed25519-zebra static lib
213- uses : actions/cache@v4
213+ uses : actions/cache@v5
214214 with :
215215 path : .lib/libed25519_zebra_ffi.a
216216 key : ${{ runner.os }}-libs-libed25519-${{ hashFiles('Utils/Sources/ed25519-zebra/**') }}
0 commit comments