Update linter.yml

This commit is contained in:
Erik Westrup
2025-04-21 10:09:51 -07:00
committed by GitHub
parent 232dc7e90f
commit 3797979dd3

View File

@@ -1,4 +1,4 @@
name: Lint Code Base name: Lint
on: on:
workflow_dispatch: workflow_dispatch:
@@ -14,21 +14,34 @@ on:
- "**.sh" - "**.sh"
- ".github/workflows/linter.yml" - ".github/workflows/linter.yml"
- "bin/**" - "bin/**"
permissions: {}
jobs: jobs:
build: build:
name: Lint Code Base name: Lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps: steps:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v2 uses: actions/checkout@v4
with: with:
# Full git history is needed to get a proper list of changed files within `super-linter` # super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0 fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v4 - name: Super-linter
uses: super-linter/super-linter@v7.3.0
env: env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: main
VALIDATE_ALL_CODEBASE: true VALIDATE_ALL_CODEBASE: true
VALIDATE_BASH: true VALIDATE_BASH: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
IGNORE_GENERATED_FILES: true IGNORE_GENERATED_FILES: true