Update docker.io/docker:24.0.6 Docker digest to e23ecf9 #918
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: ci | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- release/* | |
pull_request: | |
branches: | |
- main | |
- release/* | |
permissions: read-all | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
with: | |
fetch-depth: 0 | |
- name: Megalinter | |
uses: oxsecurity/megalinter@a87b2872713c6bdde46d2473c5d7ed23e5752dc2 # v7.4.0 | |
env: | |
APPLY_FIXES: "none" | |
BASH_SHFMT_DISABLE_ERRORS: "false" | |
DISABLE_LINTERS: MARKDOWN_MARKDOWN_LINK_CHECK,REPOSITORY_CHECKOV,REPOSITORY_SECRETLINT,REPOSITORY_TRIVY,REPOSITORY_TRUFFLEHOG,SPELL_CSPELL,SPELL_LYCHEE | |
FILTER_REGEX_EXCLUDE: .*/ISSUE_TEMPLATE/.* | |
FLAVOR_SUGGESTIONS: "false" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
JSON_PRETTIER_DISABLE_ERRORS: "false" | |
LOG_LEVEL: WARN | |
MARKDOWN_MARKDOWNLINT_DISABLE_ERRORS: "false" | |
PRINT_ALL_FILES: "false" | |
PRINT_ALPACA: "false" | |
SHOW_ELAPSED_TIME: "true" | |
SPELL_MISSPELL_DISABLE_ERRORS: "true" | |
VALIDATE_ALL_CODEBASE: "true" | |
YAML_PRETTIER_DISABLE_ERRORS: "false" |