Skip to content

Commit

Permalink
Upgrade github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
douggish committed Sep 20, 2023
1 parent 890eef0 commit 5c3a276
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 @@ -14,10 +14,10 @@ jobs:

steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v4

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

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

- name: Upload bin folder
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
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@v1
uses: actions/upload-artifact@v3
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@v1
uses: actions/upload-artifact@v3
if: always()
with:
name: integration-test-results
Expand Down

0 comments on commit 5c3a276

Please sign in to comment.