Skip to content

Commit bbcfeba

Browse files
committed
Update versions of GitHub actions used in build
Addresses deprecation warnings showing up in the build.
1 parent b8da449 commit bbcfeba

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
@@ -16,8 +16,8 @@ jobs:
1616
- name: Checkout source
1717
uses: actions/checkout@v4
1818

19-
- name: Setup .NET Core
20-
uses: actions/setup-dotnet@v3
19+
- name: Setup .NET
20+
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: 8.0.204
2323

@@ -29,7 +29,7 @@ jobs:
2929
run: ./build.sh
3030

3131
- name: Upload bin folder
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: bin
3535
path: IO.Eventuate.Tram/bin
@@ -38,7 +38,7 @@ jobs:
3838
run: dotnet test -c Release --no-build --verbosity normal --logger trx IO.Eventuate.Tram.UnitTests/
3939

4040
- name: Upload unit test results
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
if: always()
4343
with:
4444
name: unit-test-results
@@ -57,7 +57,7 @@ jobs:
5757
docker stats --no-stream --all
5858
5959
- name: Upload integration test results
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
if: always()
6262
with:
6363
name: integration-test-results

0 commit comments

Comments
 (0)