File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 35
35
- name : Test
36
36
run : dotnet test --no-build --verbosity normal
37
37
- name : Upload coverage reports to Codecov
38
- uses : codecov/codecov-action@v5.4.3
38
+ uses : codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
39
39
with :
40
40
token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 27
27
- name : Restore dependencies
28
28
run : dotnet restore algorithm_exercises_csharp.sln
29
29
- name : Run Snyk to check for vulnerabilities
30
- uses : snyk/actions/dotnet@master
30
+ uses : snyk/actions/dotnet@b98d498629f1c368650224d6d212bf7dfa89e4bf
31
31
continue-on-error : true # To make sure that SARIF upload gets called
32
32
env :
33
33
SNYK_TOKEN : ${{ secrets.SNYK_TOKEN }}
Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ jobs:
51
51
run : |
52
52
.\.sonar\scanner\dotnet-sonarscanner begin `
53
53
/k:"sir-gon_algorithm-exercises-csharp" `
54
- /o:"sir-gon" /d:sonar.token="${{ secrets .SONAR_TOKEN }}" `
54
+ /o:"sir-gon" /d:sonar.token="${{ env .SONAR_TOKEN }}" `
55
55
/d:sonar.host.url="https://sonarcloud.io" `
56
56
/d:sonar.cs.opencover.reportsPaths=**/coverage.opencover.xml
57
57
58
58
dotnet restore
59
59
dotnet build --no-restore
60
60
dotnet test --no-build --verbosity normal
61
61
.\.sonar\scanner\dotnet-sonarscanner end `
62
- /d:sonar.token="${{ secrets .SONAR_TOKEN }}"
62
+ /d:sonar.token="${{ env .SONAR_TOKEN }}"
You can’t perform that action at this time.
0 commit comments