Skip to content

Commit 216a1b5

Browse files
committed
Update GitHub Actions to more recent versions
This should fix the error "Could not find '.NET Core SDK' with version = 2.1.818" thrown by `dotnet_install` during GitHub Actions (CI).
1 parent a3e629b commit 216a1b5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,31 +19,31 @@ jobs:
1919
steps:
2020

2121
- name: Checkout repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323

2424
# Several .NET Core versions will be used during the test run.
2525
# The lowest version gets installed first in order to prevent
2626
# "a newer version is already installed" install errors.
2727

2828
- name: Install .NET Core 2.1
29-
uses: actions/setup-dotnet@v1
29+
uses: actions/setup-dotnet@v4
3030
with:
3131
dotnet-version: 2.1.x
3232

3333
- name: Install .NET Core 3.1
34-
uses: actions/setup-dotnet@v1
34+
uses: actions/setup-dotnet@v4
3535
with:
3636
dotnet-version: 3.1.x
3737

3838
- name: Install .NET 6.0
39-
uses: actions/setup-dotnet@v1
39+
uses: actions/setup-dotnet@v4
4040
with:
4141
dotnet-version: 6.0.x
4242

4343
# Building requires an up-to-date .NET SDK.
4444

4545
- name: Install .NET 7.0
46-
uses: actions/setup-dotnet@v1
46+
uses: actions/setup-dotnet@v4
4747
with:
4848
dotnet-version: 7.0.x
4949

0 commit comments

Comments
 (0)