From 2c6526b3e5eddbe41df1903c1c35ac8c3c7cff6b Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Mon, 22 Apr 2024 17:51:37 +1000 Subject: [PATCH] Create bicep-audit.yml --- .github/workflows/bicep-audit.yml | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/bicep-audit.yml diff --git a/.github/workflows/bicep-audit.yml b/.github/workflows/bicep-audit.yml new file mode 100644 index 00000000..4b5df94c --- /dev/null +++ b/.github/workflows/bicep-audit.yml @@ -0,0 +1,35 @@ +name: Validate bicep +on: + push: + branches: + - main + paths: + - "**/*.bicep" + pull_request: + branches: + - main + paths: + - "**/*.bicep" + 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-Samples' + with: + sarif_file: ${{ steps.msdo.outputs.sarifFile }}