Skip to content

Commit

Permalink
Use new GitHub Actions steps
Browse files Browse the repository at this point in the history
  • Loading branch information
joelverhagen committed Mar 29, 2023
1 parent 616e4c3 commit 1e27e97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
Expand All @@ -23,7 +23,7 @@ jobs:
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os }}-artifacts
path: artifacts/

0 comments on commit 1e27e97

Please sign in to comment.