Skip to content

Commit

Permalink
Update versions of GitHub actions used in build
Browse files Browse the repository at this point in the history
Addresses deprecation warnings showing up in the build.
  • Loading branch information
douggish committed May 3, 2024
1 parent b8da449 commit bbcfeba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4

- name: Setup .NET Core
uses: actions/setup-dotnet@v3
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.204

Expand All @@ -29,7 +29,7 @@ jobs:
run: ./build.sh

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

- name: Upload unit test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: unit-test-results
Expand All @@ -57,7 +57,7 @@ jobs:
docker stats --no-stream --all
- name: Upload integration test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: integration-test-results
Expand Down

0 comments on commit bbcfeba

Please sign in to comment.