From e3e5cffc1f6842235ecb0e1668afc5ca8029f966 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Mon, 22 Apr 2024 17:49:05 +1000 Subject: [PATCH 1/2] 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 0000000..55eb017 --- /dev/null +++ b/.github/workflows/bicep-audit.yml @@ -0,0 +1,35 @@ +name: Validate AZD template +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-Samples' + with: + sarif_file: ${{ steps.msdo.outputs.sarifFile }} From 7c3f749a66918158605fe9046bc0db32290c5e5b Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Mon, 22 Apr 2024 17:49:58 +1000 Subject: [PATCH 2/2] Update bicep-audit.yml --- .github/workflows/bicep-audit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bicep-audit.yml b/.github/workflows/bicep-audit.yml index 55eb017..547e5ba 100644 --- a/.github/workflows/bicep-audit.yml +++ b/.github/workflows/bicep-audit.yml @@ -4,12 +4,12 @@ on: branches: - main paths: - - "infra/**" + - "deploy/**" pull_request: branches: - main paths: - - "infra/**" + - "deploy/**" workflow_dispatch: jobs: