Skip to content

Commit df6f680

Browse files
committed
Update GitHub Actions to latest Node.js 24 versions
- actions/checkout v4 → v6 - actions/setup-dotnet v4 → v5 - actions/upload-artifact v4 → v7 - actions/download-artifact v4 → v8
1 parent f5e9307 commit df6f680

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717

1818
- name: Setup .NET
19-
uses: actions/setup-dotnet@v4
19+
uses: actions/setup-dotnet@v5
2020
with:
2121
dotnet-version: '10.0.x'
2222

@@ -30,7 +30,7 @@ jobs:
3030
run: dotnet pack Mapbox.Api/Mapbox.Api.csproj --no-build --configuration Release --output ./artifacts
3131

3232
- name: Upload NuGet artifact
33-
uses: actions/upload-artifact@v4
33+
uses: actions/upload-artifact@v7
3434
with:
3535
name: nuget
3636
path: |
@@ -44,13 +44,13 @@ jobs:
4444
permissions:
4545
id-token: write
4646
steps:
47-
- uses: actions/download-artifact@v4
47+
- uses: actions/download-artifact@v8
4848
with:
4949
name: nuget
5050
path: ./artifacts
5151

5252
- name: Setup .NET
53-
uses: actions/setup-dotnet@v4
53+
uses: actions/setup-dotnet@v5
5454
with:
5555
dotnet-version: '10.0.x'
5656

.github/workflows/codeql-analysis.yml

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

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
3333

@@ -38,7 +38,7 @@ jobs:
3838
languages: ${{ matrix.language }}
3939

4040
- name: Setup .NET Core
41-
uses: actions/setup-dotnet@v4
41+
uses: actions/setup-dotnet@v5
4242

4343
- name: Build
4444
shell: pwsh

0 commit comments

Comments
 (0)