Skip to content

Commit b13f18a

Browse files
authored
Merge pull request #13 from secure-web-apps/feature/fix-sonarqube-cloud-findings
Feature/fix sonarqube cloud findings
2 parents 775cc56 + 44adc76 commit b13f18a

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: |
5959
$ErrorActionPreference = "Stop"
6060
$PSNativeCommandUseErrorActionPreference = $true
61-
${{ runner.temp }}\scanner\dotnet-sonarscanner begin /k:"secure-web-apps_EndToEndSecurityWeb" /o:"secure-web-apps" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.projectBaseDir="D:\a\EndToEndSecurityWeb\EndToEndSecurityWeb" /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml /d:sonar.terraform.provider.azure.version=4.49.0
61+
${{ runner.temp }}\scanner\dotnet-sonarscanner begin /k:"secure-web-apps_EndToEndSecurityWeb" /o:"secure-web-apps" /d:sonar.token="$env:SONAR_TOKEN" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.projectBaseDir="D:\a\EndToEndSecurityWeb\EndToEndSecurityWeb" /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml /d:sonar.terraform.provider.azure.version=4.49.0
6262
dotnet build .\Bff.sln --configuration Release
6363
dotnet-coverage collect 'dotnet test .\tests\BffMicrosoftEntraID.Server.IntegrationTests.csproj' -f xml -o 'coverage.xml'
64-
${{ runner.temp }}\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
64+
${{ runner.temp }}\scanner\dotnet-sonarscanner end /d:sonar.token="$env:SONAR_TOKEN"

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,12 @@ ng update @angular/cli @angular/core
8888

8989
## History
9090

91+
- 2025-11-02 Added bootstrap, improved UI (style), created app registration for BFF app using terraform
92+
- 2025-11-01 Added security.txt, added OpenAPI
9193
- 2025-10-31 Updated to Angular CLI and Angular 20.3.0, using vite in dev
9294
- 2025-10-30 Fixed deployment to Azure App Service, reverted Angular due to CSP nonce issues
93-
- 2025-10-29 Added terraform, sonar SCA, SAST, improved GitHub Actions workflows
94-
- 2025-10-28 Updated frontend packages, added integration tests, added GitHub Actions workflows
95+
- 2025-10-29 Added .NET Aspire, added terraform, Sonar SCA, SAST, improved GitHub Actions workflows
96+
- 2025-10-28 Improved security headers, updated frontend packages, added integration tests, added GitHub Actions workflows
9597
- 2025-10-27 Updated NuGet packages
9698
- 2025-08-30 Angular 20, updated packages
9799
- 2025-01-01 .NET 9, Angular 19

0 commit comments

Comments
 (0)