Skip to content

Commit d61ae1f

Browse files
authored
ci: bump actions to node 24 compatible versions (#474)
1 parent 38e3904 commit d61ae1f

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818

1919
- name: Check formatting
2020
run: |
@@ -48,7 +48,7 @@ jobs:
4848
runner: ubuntu-latest
4949

5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v6
5252

5353
- name: Run clippy
5454
run: cargo clippy --locked --workspace --all-features --all-targets -- -D warnings
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: ubuntu-latest
6060

6161
steps:
62-
- uses: actions/checkout@v4
62+
- uses: actions/checkout@v6
6363

6464
- name: Run clippy
6565
run: cargo clippy --locked --all-features --all-targets --manifest-path ./ffi/wasm/Cargo.toml -- -D warnings
@@ -86,7 +86,7 @@ jobs:
8686
runner: ubuntu-latest
8787

8888
steps:
89-
- uses: actions/checkout@v4
89+
- uses: actions/checkout@v6
9090

9191
- name: Run tests
9292
run: cargo test --locked --verbose --workspace --all-features
@@ -113,7 +113,7 @@ jobs:
113113
msvc: "1.85"
114114

115115
steps:
116-
- uses: actions/checkout@v4
116+
- uses: actions/checkout@v6
117117

118118
- name: Configure runner
119119
run: |

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737

3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6
4141

4242
- name: Setup Node.js
43-
uses: actions/setup-node@v4
43+
uses: actions/setup-node@v6
4444
with:
4545
node-version: 22
4646

@@ -67,7 +67,7 @@ jobs:
6767

6868
steps:
6969
- name: Checkout
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v6
7171

7272
- name: Setup wasm-pack
7373
run: |

.github/workflows/nuget.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout ${{ github.repository }}
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131

3232
- name: Get dry run
3333
id: get-dry-run
@@ -107,7 +107,7 @@ jobs:
107107

108108
steps:
109109
- name: Checkout ${{ github.repository }}
110-
uses: actions/checkout@v4
110+
uses: actions/checkout@v6
111111

112112
- name: Configure Android NDK
113113
uses: Devolutions/actions-public/cargo-android-ndk@v1
@@ -200,7 +200,7 @@ jobs:
200200
shell: pwsh
201201

202202
- name: Upload native components
203-
uses: actions/upload-artifact@v4
203+
uses: actions/upload-artifact@v7
204204
with:
205205
name: picky-${{matrix.os}}-${{matrix.arch}}
206206
path: dependencies/runtimes/${{matrix.os}}-${{matrix.arch}}
@@ -216,13 +216,13 @@ jobs:
216216

217217
steps:
218218
- name: Checkout ${{ github.repository }}
219-
uses: actions/checkout@v4
219+
uses: actions/checkout@v6
220220

221221
- name: Setup CCTools
222222
uses: Devolutions/actions-public/setup-cctools@v1
223223

224224
- name: Download native components
225-
uses: actions/download-artifact@v4
225+
uses: actions/download-artifact@v8
226226
with:
227227
path: dependencies/runtimes
228228

@@ -284,7 +284,7 @@ jobs:
284284
shell: pwsh
285285

286286
- name: Upload native components
287-
uses: actions/upload-artifact@v4
287+
uses: actions/upload-artifact@v7
288288
with:
289289
name: picky-${{ matrix.os }}-universal
290290
path: dependencies/runtimes/${{ matrix.os }}-universal
@@ -296,7 +296,7 @@ jobs:
296296

297297
steps:
298298
- name: Check out ${{ github.repository }}
299-
uses: actions/checkout@v4
299+
uses: actions/checkout@v6
300300

301301
- name: Install ios workload
302302
run: dotnet workload install ios
@@ -307,7 +307,7 @@ jobs:
307307
shell: pwsh
308308

309309
- name: Download native components
310-
uses: actions/download-artifact@v4
310+
uses: actions/download-artifact@v8
311311
with:
312312
path: dependencies/runtimes
313313

@@ -336,7 +336,7 @@ jobs:
336336
shell: pwsh
337337

338338
- name: Upload managed components
339-
uses: actions/upload-artifact@v4
339+
uses: actions/upload-artifact@v7
340340
with:
341341
name: picky-nupkg
342342
path: ffi/dotnet/Devolutions.Picky/bin/Release/*.nupkg
@@ -352,7 +352,7 @@ jobs:
352352

353353
steps:
354354
- name: Download NuGet package artifact
355-
uses: actions/download-artifact@v4
355+
uses: actions/download-artifact@v8
356356
with:
357357
name: picky-nupkg
358358
path: package

.github/workflows/release-crates.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 512
2828

@@ -72,7 +72,7 @@ jobs:
7272

7373
steps:
7474
- name: Checkout repository
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v6
7676
with:
7777
fetch-depth: 512
7878

.github/workflows/swift-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout ${{ github.repository }}
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323

2424
- name: Get dry run
2525
id: get-dry-run
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Checkout ${{ github.repository }}
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v6
5151

5252
- name: Setup Rust targets
5353
run: |
@@ -91,7 +91,7 @@ jobs:
9191
zip -r Picky-$VERSION.zip Picky-$VERSION
9292
9393
- name: Upload package
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v7
9595
with:
9696
name: swift-zip
9797
path: ./Picky-${{ needs.preflight.outputs.version }}.zip
@@ -105,7 +105,7 @@ jobs:
105105

106106
steps:
107107
- name: Download Swift package artifact
108-
uses: actions/download-artifact@v4
108+
uses: actions/download-artifact@v8
109109
with:
110110
name: swift-zip
111111
path: .

0 commit comments

Comments
 (0)