Skip to content

Bump to v5, lock to v3 #491

Bump to v5, lock to v3

Bump to v5, lock to v3 #491

Workflow file for this run

---
## This workflow executes several linters on changed files based on languages
## used in your code base whenever you push a code or open a pull request.
##
## You can adjust the behavior by modifying this file.
## For more information, see:
## https://github.com/github/super-linter
name: Lint Code Base
permissions: {}
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
jobs:
run-lint:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
# yamllint disable-line rule:line-length
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # @v4.2.1
with:
## Full git history is needed to get a proper list of changed files
## within `super-linter`
fetch-depth: 0
- name: Lint Code Base
# yamllint disable-line rule:line-length
uses: super-linter/super-linter@b92721f792f381cedc002ecdbb9847a15ece5bb8 # @v7.1.0
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: "main"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}