Skip to content

Update Super-Linter configuration and version #514

Update Super-Linter configuration and version

Update Super-Linter configuration and version #514

Workflow file for this run

---
name: Super-Linter
on:
push:
branches:
- main
pull_request:
branches:
- '*'
permissions:
contents: read
jobs:
super-linter:
permissions:
contents: read # for actions/checkout to fetch code
statuses: write # for super-linter/super-linter/slim to mark status of each linter run
name: Super-Linter
runs-on: ubuntu-latest
steps:
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
persist-credentials: false
- uses: super-linter/super-linter/slim@9e863354e3ff62e0727d37183162c4a88873df41 # v8.6.0
env:
DEFAULT_BRANCH: main
# VALIDATE_EDITORCONFIG: true
VALIDATE_CLANG_FORMAT: true
VALIDATE_DOCKERFILE_HADOLINT: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_GITLEAKS: true
VALIDATE_HTML: true
VALIDATE_JSON: true
VALIDATE_MARKDOWN: true
VALIDATE_YAML: true
VALIDATE_ALL_CODEBASE: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}