File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 branches :
99 - main
1010
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.ref }}
13+ cancel-in-progress : true
14+
1115permissions :
1216 contents : read
1317 id-token : write
2428
2529 steps :
2630 - uses : actions/checkout@v6
31+ - name : Cache .NET SDK
32+ uses : actions/cache@v4
33+ with :
34+ path : ~/.dotnet
35+ key : ${{ runner.os }}-dotnet-sdk-${{ hashFiles('global.json') }}
36+ restore-keys : |
37+ ${{ runner.os }}-dotnet-sdk-
2738 - name : Cache NuGet packages
2839 uses : actions/cache@v4
2940 with :
Original file line number Diff line number Diff line change 55 branches :
66 - main
77
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.ref }}
10+ cancel-in-progress : true
811permissions :
912 id-token : write
1013 contents : write
2023
2124 steps :
2225 - uses : actions/checkout@v6
26+ - name : Cache .NET SDK
27+ uses : actions/cache@v4
28+ with :
29+ path : ~/.dotnet
30+ key : ${{ runner.os }}-dotnet-sdk-${{ hashFiles('global.json') }}
31+ restore-keys : |
32+ ${{ runner.os }}-dotnet-sdk-
2333 - name : Cache NuGet packages
2434 uses : actions/cache@v4
2535 with :
You can’t perform that action at this time.
0 commit comments