This repository was archived by the owner on Apr 6, 2026. It is now read-only.
Update azure/azapi requirement from ~> 2.4.0 to ~> 2.9.0 in the terraform group across 1 directory #39
This file contains hidden or 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: Azure Terraform Security Scan | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.tf' | |
| - '**.tfvars' | |
| - '.github/workflows/terraform-security-msdo.yml' | |
| permissions: | |
| contents: read | |
| security-events: write | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| security-scan: | |
| name: MSDO Security Scan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - uses: microsoft/security-devops-action@v1.12.0 | |
| id: msdo | |
| with: | |
| tools: checkov,terrascan,trivy | |
| policy: microsoft | |
| categories: IaC | |
| - uses: github/codeql-action/upload-sarif@v4 | |
| if: success() || failure() | |
| with: | |
| sarif_file: ${{ steps.msdo.outputs.sarifFile }} |