Updated .NET Github Actions

- Use .NET setup v3
- Removed staging action
- Cache packages
This commit is contained in:
Tony Bark 2023-08-12 17:11:59 -04:00
parent 6bc99bb7cc
commit a228081732
3 changed files with 6 additions and 26 deletions

View file

@ -10,6 +10,8 @@ jobs:
timeout-minutes: 15
continue-on-error: true
runs-on: ${{ matrix.platforms }}
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
strategy:
matrix:
dotnet: ["6.0.x"]
@ -17,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install dependencies