Skip to content

Commit

Permalink
[GitHub -> Actions] Update to .NET 9 and update actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogFeelings authored Nov 14, 2024
1 parent c938730 commit 1981e21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
dotnet-version: [ '8.0.x' ]
dotnet-version: [ '9.0.x' ]

permissions:
packages: write
Expand All @@ -30,15 +30,15 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4.1.5
uses: actions/checkout@v4.2.2

- name: Setup .NET ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4.0.0
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: ${{ matrix.dotnet-version }}

- name: Check Dependency Cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.2
with:
path: ${{ github.workspace }}/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
Expand Down

0 comments on commit 1981e21

Please sign in to comment.