Bump the github group across 1 directory with 2 updates #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: lint | |
on: | |
push: | |
# Run superlinter on pushes to default branch | |
branches: | |
- main | |
# Run superlinter on pull request events | |
pull_request: | |
# Declare default permissions as read-only | |
permissions: read-all | |
jobs: | |
super-linter: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
steps: | |
- name: 🔒 harden runner | |
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: 🧹 run superlinter | |
uses: super-linter/super-linter@b92721f792f381cedc002ecdbb9847a15ece5bb8 # v7.1.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LINTER_RULES_PATH: ".github/linters" | |
MARKDOWN_CONFIG_FILE: ".markdownlint.yml" | |
YAML_CONFIG_FILE: ".yamllint.yml" | |
VALIDATE_ALL_CODEBASE: false | |
MULTI_STATUS: false |