Skip to content

Commit

Permalink
Create audit-bicep.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaloney committed Apr 23, 2024
1 parent 9ed6f49 commit 5014253
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/audit-bicep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Validate AZD template
on:
push:
branches:
- main
- cruft/update
paths:
- "infra/**"
pull_request:
branches:
- main
- cruft/update
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 }}

0 comments on commit 5014253

Please sign in to comment.