We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f86e5bd commit 06057abCopy full SHA for 06057ab
.github/workflows/build-and-test.yml
@@ -15,14 +15,15 @@ jobs:
15
build-and-test:
16
runs-on: windows-latest
17
steps:
18
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
19
- uses: FedericoCarboni/setup-ffmpeg@v1
20
- name: Setup .NET
21
- uses: actions/setup-dotnet@v3
+ uses: actions/setup-dotnet@v4
22
with:
23
dotnet-version: 8.0.x
24
+ cache: true
25
- name: Restore dependencies
- run: dotnet restore
26
+ run: dotnet restore --locked-mode
27
- name: Build
28
run: dotnet build --no-restore
29
- name: Test
0 commit comments