Skip to content

Commit affc8de

Browse files
committed
printenv
1 parent 7dafc8d commit affc8de

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/scan-vulnerable-dependencies.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,8 @@ jobs:
4040
with:
4141
persist-credentials: false
4242

43+
- name: printenv
44+
run: printenv
45+
4346
- name: Report vulnerable dependencies
4447
run: dotnet restore ${{ env.SOLUTION_FILE }} /p:Configuration=Release /p:NuGetAudit=true /p:NuGetAuditMode=all /p:NuGetAuditLevel=low --verbosity minimal

.github/workflows/sonarcube.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ jobs:
5959
- name: Install Sonar .NET Scanner
6060
run: dotnet tool install --global dotnet-sonarscanner
6161

62+
- name: printenv
63+
run: printenv
64+
6265
- name: Git checkout
6366
uses: actions/checkout@v6
6467
with:
@@ -67,7 +70,7 @@ jobs:
6770
fetch-depth: 0
6871

6972
- name: Restore packages
70-
run: dotnet restore ${{ env.SOLUTION_FILE }} /p:Configuration=Release /p:NuGetAudit=false --verbosity minimal
73+
run: dotnet restore ${{ env.SOLUTION_FILE }} /p:Configuration=Release --verbosity minimal
7174

7275
- name: Begin Sonar .NET scanner
7376
id: sonar_begin
@@ -77,6 +80,9 @@ jobs:
7780
dotnet sonarscanner begin /k:"SteeltoeOSS_steeltoe" /o:"steeltoeoss" /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
7881
/d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths=**/coverage.opencover.xml
7982
83+
- name: printenv2
84+
run: printenv
85+
8086
- name: Build solution
8187
run: dotnet build ${{ env.SOLUTION_FILE }} --no-restore --configuration Release --verbosity minimal
8288

0 commit comments

Comments
 (0)