From e132c20fe9e7cd44c74b568db72d30e220dfa4f0 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Mon, 6 May 2024 15:57:16 +1000 Subject: [PATCH] Create audit-bicep.yaml --- .github/workflows/audit-bicep.yaml | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/audit-bicep.yaml diff --git a/.github/workflows/audit-bicep.yaml b/.github/workflows/audit-bicep.yaml new file mode 100644 index 0000000..88febf6 --- /dev/null +++ b/.github/workflows/audit-bicep.yaml @@ -0,0 +1,35 @@ +name: Analyze bicep templates +on: + push: + branches: + - main + paths: + - "infra/**" + pull_request: + branches: + - main + paths: + - "infra/**" + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + permissions: + security-events: write + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Run Microsoft Security DevOps Analysis + uses: microsoft/security-devops-action@preview + id: msdo + continue-on-error: true + with: + tools: templateanalyzer + + - name: Upload alerts to Security tab + uses: github/codeql-action/upload-sarif@v3 + if: github.repository_owner == 'Azure' + with: + sarif_file: ${{ steps.msdo.outputs.sarifFile }}