File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
if : github.repository == 'fluentassertions/fluentassertions.analyzers'
13
13
steps :
14
- - uses : actions/checkout@v3
14
+ - uses : actions/checkout@v4
15
15
- name : Setup .NET
16
- uses : actions/setup-dotnet@v3
16
+ uses : actions/setup-dotnet@v4
17
17
with :
18
18
dotnet-version : ' 6.x'
19
19
- name : Run benchmark
Original file line number Diff line number Diff line change @@ -13,14 +13,16 @@ jobs:
13
13
os : [ubuntu-latest, windows-latest, macos-latest]
14
14
config : [Debug, Release]
15
15
runs-on : ${{ matrix.os }}
16
+ env :
17
+ NUGET_CERT_REVOCATION_MODE : offline
16
18
steps :
17
- - uses : actions/checkout@v3
19
+ - uses : actions/checkout@v4
18
20
with :
19
21
fetch-depth : 0
20
22
- name : Setup .NET 6
21
- uses : actions/setup-dotnet@v3
23
+ uses : actions/setup-dotnet@v4
22
24
with :
23
25
dotnet-version : 6.0.x
24
26
- run : dotnet build
25
27
- run : dotnet test --configuration Release --filter 'TestCategory=Completed' /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura
26
- - run : dotnet pack src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj
28
+ - run : dotnet pack src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout code
13
- uses : actions/checkout@v3
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Setup .NET Core
16
- uses : actions/setup-dotnet@v3
16
+ uses : actions/setup-dotnet@v4
17
17
with :
18
18
dotnet-version : ' 6.x'
19
19
35
35
$nupkg = $symbol.Replace(".symbols.nupkg",".nupkg");
36
36
Write-Host "Pushing nupkg $nupkg";
37
37
dotnet nuget push $nupkg --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json;
38
- }
38
+ }
You can’t perform that action at this time.
0 commit comments