Bumps [oxsecurity/megalinter](https://github.com/oxsecurity/megalinter) from 7 to 8. - [Release notes](https://github.com/oxsecurity/megalinter/releases) - [Changelog](https://github.com/oxsecurity/megalinter/blob/main/CHANGELOG.md) - [Commits](https://github.com/oxsecurity/megalinter/compare/v7...v8) --- updated-dependencies: - dependency-name: oxsecurity/megalinter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
39 lines
976 B
YAML
39 lines
976 B
YAML
---
|
|
name: MegaLinter
|
|
permissions: read-all
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
env:
|
|
APPLY_FIXES: VALIDATE_ALL_CODEBASE
|
|
APPLY_FIXES_EVENT: all
|
|
APPLY_FIXES_MODE: commit
|
|
|
|
concurrency:
|
|
group: ${{ github.ref }}-${{ github.workflow }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: MegaLinter
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
|
|
fetch-depth: 0
|
|
- name: MegaLinter
|
|
id: ml
|
|
uses: oxsecurity/megalinter@v8
|
|
env:
|
|
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|