chore(deps): update mtweeman/hajle-silesia_provisioning-ld docker tag to v1 #325
Workflow file for this run
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: Static analysis | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
working-directory: | |
description: Working directory | |
type: string | |
required: false | |
default: . | |
terraform-version: | |
description: Terraform version | |
type: string | |
required: false | |
default: latest | |
severity: | |
description: Severity | |
type: string | |
required: false | |
default: MEDIUM,HIGH,CRITICAL | |
permissions: | |
contents: read | |
env: | |
working-directory: ${{ inputs.working-directory || '.' }} | |
terraform-version: ${{ inputs.terraform-version || 'latest' }} | |
severity: ${{ inputs.severity || 'MEDIUM,HIGH,CRITICAL' }} | |
jobs: | |
preparation: | |
name: Preparation | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "null" | |
outputs: | |
working-directory: ${{ env.working-directory }} | |
terraform-version: ${{ env.terraform-version }} | |
severity: ${{ env.severity }} | |
static-analysis: | |
needs: | |
- preparation | |
name: Static analysis | |
uses: ./.github/workflows/static-analyzers-aggregator.yaml | |
with: | |
working-directory: ${{ needs.preparation.outputs.working-directory }} | |
terraform-version: ${{ needs.preparation.outputs.terraform-version }} | |
severity: ${{ needs.preparation.outputs.severity }} | |
static-analysis-geodesic-test: | |
needs: | |
- preparation | |
name: Static analysis geodesic test | |
uses: ./.github/workflows/static-analyzers-aggregator-geodesic-test.yaml |