Skip to content

Commit 5987643

Browse files
committed
ci: update actions to Node.js 24-compatible versions
- actions/cache v4 -> v5 - actions/upload-artifact v4 -> v7 - actions/download-artifact v4 -> v8 Fixes Node.js 20 deprecation warnings.
1 parent 1edd21d commit 5987643

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
dotnet-version: 10.0.x
2121

2222
- name: NuGet Cache
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: ~/.nuget/packages
2626
key: nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props', '**/Versions.props') }}
@@ -39,13 +39,13 @@ jobs:
3939
shell: powershell
4040

4141
- name: Upload Build Output
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v7
4343
with:
4444
name: build-output
4545
path: '.\\out\\'
4646

4747
- name: Upload Test Binaries
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v7
4949
with:
5050
name: test-binaries
5151
path: '.\\src\\**\\bin\\'
@@ -84,13 +84,13 @@ jobs:
8484
dotnet-version: 10.0.x
8585

8686
- name: Download Test Binaries
87-
uses: actions/download-artifact@v4
87+
uses: actions/download-artifact@v8
8888
with:
8989
name: test-binaries
9090
path: '.\\src\\'
9191

9292
- name: Firebird Cache
93-
uses: actions/cache@v4
93+
uses: actions/cache@v5
9494
with:
9595
path: 'C:\firebird'
9696
key: firebird-${{ matrix.FIREBIRD_SELECTION }}

0 commit comments

Comments
 (0)