-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into chore/warning-supression-cleanup
- Loading branch information
Showing
27 changed files
with
468 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: 'Azure Login with Bicep Upgrade' | ||
description: 'Login to Azure and upgrade Bicep CLI' | ||
|
||
inputs: | ||
client-id: | ||
description: 'Azure Client ID' | ||
required: true | ||
tenant-id: | ||
description: 'Azure Tenant ID' | ||
required: true | ||
subscription-id: | ||
description: 'Azure Subscription ID' | ||
required: true | ||
env: | ||
AZ_CLI_VERSION: 2.67.0 | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: OIDC Login to Azure Public Cloud | ||
uses: azure/login@v2 | ||
with: | ||
client-id: ${{ inputs.client-id }} | ||
tenant-id: ${{ inputs.tenant-id }} | ||
subscription-id: ${{ inputs.subscription-id }} | ||
|
||
- name: Upgrade Azure Bicep | ||
shell: bash | ||
run: az bicep upgrade |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Disable code duplication detection for C# files | ||
sonar.cpd.exclusions=**/*.cs | ||
# Disable code duplication detection for C# and k6 files | ||
sonar.cpd.exclusions=**/*.cs,**/k6/**/* | ||
|
||
# Disable all rules for auto-generated migration files | ||
sonar.exclusions=**/Migrations/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.