terraform(deps): bump hashicorp/aws from 5.32.0 to 5.32.1 in /terraform/github #13356
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: GitHub Super-Linter | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
types: | |
- edited | |
- opened | |
- reopened | |
- synchronize | |
permissions: read-all | |
jobs: | |
super-linter: | |
name: GitHub Super-Linter | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: GitHub Super-Linter | |
id: super_linter | |
uses: github/super-linter/slim@45fc0d88288beee4701c62761281edfee85655d7 # v5.0.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DEFAULT_BRANCH: main | |
VALIDATE_ALL_CODEBASE: false | |
FILTER_REGEX_EXCLUDE: .*archive/.* | |
# yamllint disable rule:line-length | |
VALIDATE_GITHUB_ACTIONS: false # yaml This is disabled until Super-Linter ships with a newer version of actionlint supports the new `var` context | |
# yamllint enable rule:line-length | |
PYTHON_ISORT_CONFIG_FILE: pyproject.toml | |
# TODO: Fix all the shell scripts and re-enable these | |
VALIDATE_BASH: false | |
VALIDATE_BASH_EXEC: false | |
VALIDATE_SHELL_SHFMT: false | |
VALIDATE_HTML: false | |
VALIDATE_JAVASCRIPT_STANDARD: false | |
VALIDATE_OPENAPI: false | |
VALIDATE_KUBERNETES_KUBECONFORM: false | |
VALIDATE_TERRAFORM_TERRASCAN: false |