Skip to content

Upgrade terraform version #220

Upgrade terraform version

Upgrade terraform version #220

Workflow file for this run

---
name: Lint codebase
permissions:
actions: write # so 'cancel-workflow-action' can function
statuses: write # so 'super-linter' can write individual check statuses to the pr / commit
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@01ce38bf961b4e243a6342cbade0dbc8ba3f0432
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
with:
fetch-depth: 0
- name: Lint Code Base (Blocking) # Blow up on gitleaks / github actions errors (ie. things which may / will cause issues)
uses: github/super-linter@759885f47664595a56db33fee55d64a393e5bad8
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISABLE_ERRORS: false
VALIDATE_GITLEAKS: true
VALIDATE_GITHUB_ACTIONS: true
- name: Lint Code Base (Information only) # Run linter on everything else, but in 'information-only' mode.
uses: github/super-linter@759885f47664595a56db33fee55d64a393e5bad8
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISABLE_ERRORS: true
VALIDATE_GITLEAKS: false
VALIDATE_GITHUB_ACTIONS: false