Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
Update the GitHub Actions to their latest versions to fix warnings.
  • Loading branch information
martincostello committed Oct 11, 2022
1 parent 5dca570 commit 47d215d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup NuGet
uses: nuget/setup-nuget@v1
Expand Down Expand Up @@ -68,20 +68,20 @@ jobs:
NUGET_XMLDOC_MODE: skip

- name: Publish logs
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: logs-${{ matrix.os_name }}
path: ./artifacts/log/Release

- name: Publish NuGet packages
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: packages-${{ matrix.os_name }}
path: ./artifacts/packages/Release/Shipping

- name: Publish test results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: testresults-${{ matrix.os_name }}
Expand Down

0 comments on commit 47d215d

Please sign in to comment.