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 3535 - name : Test
3636 run : dotnet test --no-build --verbosity normal
3737 - name : Upload coverage reports to Codecov
38- uses : codecov/codecov-action@v5.4.3
38+ uses : codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
3939 with :
4040 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 2727 - name : Restore dependencies
2828 run : dotnet restore algorithm_exercises_csharp.sln
2929 - name : Run Snyk to check for vulnerabilities
30- uses : snyk/actions/dotnet@master
30+ uses : snyk/actions/dotnet@b98d498629f1c368650224d6d212bf7dfa89e4bf
3131 continue-on-error : true # To make sure that SARIF upload gets called
3232 env :
3333 SNYK_TOKEN : ${{ secrets.SNYK_TOKEN }}
Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ jobs:
5151 run : |
5252 .\.sonar\scanner\dotnet-sonarscanner begin `
5353 /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 }}" `
5555 /d:sonar.host.url="https://sonarcloud.io" `
5656 /d:sonar.cs.opencover.reportsPaths=**/coverage.opencover.xml
5757
5858 dotnet restore
5959 dotnet build --no-restore
6060 dotnet test --no-build --verbosity normal
6161 .\.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