Add secure() decorator and Bicep validation #2
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 AZD template | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- "infra/**" | |
pull_request: | |
branches: [ main ] | |
paths: | |
- "infra/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build Bicep for linting | |
uses: azure/CLI@v1 | |
with: | |
inlineScript: az config set bicep.use_binary_from_path=false && az bicep build -f infra/main.bicep --stdout | |
- name: Run Microsoft Security DevOps Analysis | |
uses: microsoft/security-devops-action@v1 | |
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 == 'Azure-Samples/langfuse-on-azure' | |
with: | |
sarif_file: ${{ steps.msdo.outputs.sarifFile }} |