We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 549e42a commit 1eeec71Copy full SHA for 1eeec71
.github/workflows/test.yml
@@ -14,18 +14,12 @@ jobs:
14
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
15
16
steps:
17
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
18
19
- - uses: actions/setup-dotnet@v1
+ - uses: actions/setup-dotnet@v4
20
with:
21
- dotnet-version: '2.2.x'
22
-
23
- - uses: actions/cache@v2
24
- with:
25
- path: ~/.nuget/packages
26
- key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
27
- restore-keys: |
28
- ${{ runner.os }}-nuget-
+ dotnet-version: '9.0.x'
+ cache: true
29
30
- run: dotnet restore
31
- run: dotnet build --no-restore
0 commit comments