Skip to content

build(deps): bump super-linter/super-linter from 6 to 7 #33

build(deps): bump super-linter/super-linter from 6 to 7

build(deps): bump super-linter/super-linter from 6 to 7 #33

Workflow file for this run

---
name: Lint
on:
push:
pull_request:
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Super-linter
uses: super-linter/super-linter/slim@v7
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_CHECKOV: false
VALIDATE_JSCPD: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
...