Skip to content

chore(deps): update super-linter/super-linter action to v8.3.2 #1174

chore(deps): update super-linter/super-linter action to v8.3.2

chore(deps): update super-linter/super-linter action to v8.3.2 #1174

---
name: Execute Super-Linter
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
permissions: {}
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
# to be able to commit
contents: write
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
persist-credentials: false
- name: Run Super-linter
uses: super-linter/super-linter@502f4fe48a81a392756e173e39a861f8c8efe056 # v8.3.0 # x-release-please-version
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Fixing Lint Errors for JSONC, MARKDOWN_PRETTIER, MARKDOWN and YAML_PRETTIER
FIX_JSONC_PRETTIER: true
FIX_MARKDOWN_PRETTIER: true
FIX_MARKDOWN: true
FIX_YAML_PRETTIER: true
VALIDATE_BIOME_FORMAT: false
- name: Commit and push linting fixes
# Run only on:
# - Pull requests
# - Not on the default branch
if: >
github.event_name == 'pull_request' &&
github.ref_name != github.event.repository.default_branch
uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 # v6.0.1
with:
branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
commit_message: "chore: fix linting issues [skip ci]"
commit_user_name: super-linter
commit_user_email: super-linter@super-linter.dev