Skip to content

chore(deps): bump github/codeql-action from 2.22.9 to 3.26.12 #764

chore(deps): bump github/codeql-action from 2.22.9 to 3.26.12

chore(deps): bump github/codeql-action from 2.22.9 to 3.26.12 #764

Workflow file for this run

---
#################################
## Super Linter GitHub Actions
## https://github.com/github/super-linter
#################################
name: linter
# only run during PRs or manually
on:
pull_request:
branches: [main]
workflow_dispatch:
# Set permissions to be read only
permissions: read-all
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0
################################
# Run Linter against code base
# each step will run even if one fails
# this is accomplished with the 'if: ${{ success() || failure() }}'
################################
- name: Lint YAML
if: ${{ success() || failure() }}
uses: github/super-linter/slim@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: gcloud/.*
LINTER_RULES_PATH: .github/linter-rules
VALIDATE_YAML: true
YAML_CONFIG_FILE: .yaml-lint-config.yaml
# the linter-rules file for bash (.shellcheckrc) needs to exists in the repo's root
# use 'SHELLCHECK_OPTS' instead to ignore certain errors and/or add command options
# https://github.com/koalaman/shellcheck/blob/master/shellcheck.1.md
- name: Lint Bash
if: ${{ success() || failure() }}
uses: github/super-linter/slim@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: gcloud/.*
VALIDATE_BASH: true
SHELLCHECK_OPTS: "--severity=info"
# Super-Linter markdown validation
- name: Lint Markdown
if: ${{ success() || failure() }}
uses: github/super-linter/slim@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: gcloud/.*
LINTER_RULES_PATH: .github/linter-rules
VALIDATE_MARKDOWN: true
MARKDOWN_CONFIG_FILE: .markdown-lint-config.yaml