Skip to content

Commit f13b823

Browse files
authored
Update GitHub Actions to Node 24 compatible versions (#124)
GitHub is deprecating Node 20 on Actions runners (EOL April 2026). Updated actions to their latest major versions with Node 24 support: - actions/checkout v4 → v6 - actions/setup-dotnet v4 → v5 - microsoft/setup-msbuild v1.1 → v3 - darenm/Setup-VSTest v1.2 → v1.3
1 parent ae07429 commit f13b823

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/check-badges.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515

1616
- name: Check badges in README.md
1717
run: ./scripts/check-badges.bash "README.md"

.github/workflows/dotnet-core.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
continue-on-error: true
2727

2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030
- name: Setup latest version of dotnet
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
- name: Build with latest version
3333
run: dotnet build --warnaserror Aspose.BarCode.Cloud.Sdk.sln
3434

3535
- name: Setup ${{ matrix.dotnet-version }} version of dotnet
36-
uses: actions/setup-dotnet@v4
36+
uses: actions/setup-dotnet@v5
3737
with:
3838
dotnet-version: ${{ matrix.dotnet-version }}
3939

.github/workflows/net-framework.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ jobs:
2626
continue-on-error: true
2727

2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030

3131
- name: Setup .NET 10 SDK
32-
uses: actions/setup-dotnet@v4
32+
uses: actions/setup-dotnet@v5
3333
with:
3434
dotnet-version: '10.0.x'
3535

3636
- name: Setup MSBuild
37-
uses: microsoft/setup-msbuild@v1.1
37+
uses: microsoft/setup-msbuild@v3
3838

3939
- name: Setup VSTest
40-
uses: darenm/Setup-VSTest@v1.2
40+
uses: darenm/Setup-VSTest@v1.3
4141

4242
- name: Pack nuget
4343
run: |

.github/workflows/pack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
runs-on: ubuntu-22.04
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- name: Build the Docker image
1616
run: docker build . --file Dockerfile

.github/workflows/test-examples-and-snippets.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212

1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Setup latest version of dotnet
17-
uses: actions/setup-dotnet@v4
17+
uses: actions/setup-dotnet@v5
1818
- name: Build nuget with latest version
1919
run: |
2020
./scripts/pack-nuget.bash

0 commit comments

Comments
 (0)