Bump megalinter/megalinter from 8.4.0 to 8.4.1 #95
Workflow file for this run
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: MegaLinter | |
"on": [push] | |
# checkov complains about the default, we don't need more for now, but if we ever want megalinter | |
# to fix things for us, we'll have to revisit | |
permissions: read-all | |
jobs: | |
mega-lint: | |
name: Mega Linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Mega Linter | |
uses: megalinter/megalinter/flavors/[email protected] | |
env: | |
# VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
# Validates all source when push on main, else just the git diff with main. | |
# Override with true if you always want to lint all sources | |
VALIDATE_ALL_CODEBASE: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DISABLE_LINTERS: SPELL_CSPELL | |
# GO_GOLANGCI_LINT_CLI_LINT_MODE: project | |
GO_REVIVE_CLI_LINT_MODE: project | |
# yes, I did put a fake slack token in my code... get over it | |
REPOSITORY_SECRETLINT_DISABLE_ERRORS: true |