Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
Merge pull request #93 from Azure-Samples/tonybaloney-patch-1
Browse files Browse the repository at this point in the history
Create bicep-audit.yml
  • Loading branch information
tonybaloney authored May 6, 2024
2 parents 331b7c4 + b84a1e9 commit 71cdf64
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/bicep-audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Validate AZD template
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 }}

0 comments on commit 71cdf64

Please sign in to comment.