fix: Fix computer vision for deployments (#919) #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate bicep templates | |
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 }} |