[pre-commit.ci] pre-commit autoupdate #658
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
--- | |
########################### | |
########################### | |
## Linter GitHub Actions ## | |
########################### | |
########################### | |
name: Lint Code Base | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
branches-ignore: [main] | |
# Remove the line above to run when pushing to main | |
pull_request: | |
branches: [main] | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
build: | |
# Name the Job | |
name: Megalint Code Base | |
# Set the agent to run on | |
runs-on: ubuntu-latest | |
################## | |
# Load all steps # | |
################## | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
# Full git history is needed to get a proper list of changed files | |
# within `mega-linter` | |
fetch-depth: 0 | |
################################ | |
# Run Linter against code base # | |
################################ | |
- name: Lint Code Base | |
uses: oxsecurity/megalinter/flavors/python@v8 | |
env: | |
ACTION_ACTIONLINT_DISABLE_ERRORS: true | |
DOCKERFILE_HADOLINT_DISABLE_ERRORS: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PAT: ${{secrets.PAT}} | |
REPOSITORY_GITLEAKS_DISABLE_ERRORS: true | |
REPOSITORY_GITLEAKS_PR_COMMITS_SCAN: true | |
REPOSITORY_TRIVY_DISABLE_ERRORS: true | |
VALIDATE_ALL_CODEBASE: false | |
YAML_YAMLLINT_DISABLE_ERRORS: true | |
# Upload Mega-Linter artifacts. | |
# They will be available on Github action page "Artifacts" section | |
- name: Archive production artifacts | |
if: ${{ success() }} || ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
env: | |
PAT: ${{secrets.PAT}} | |
with: | |
name: Mega-Linter reports | |
path: | | |
megalinter-reports | |
mega-linter.log |