chore(docker): bump google/cloud-sdk from 499.0.0-alpine to 500.0.0-alpine #234
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: Lint Code Base | |
"on": | |
pull_request: | |
types: | |
- "opened" | |
- "reopened" | |
- "synchronize" | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request.draft == false }} | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
fetch-depth: 0 | |
- name: Lint | |
uses: oxsecurity/megalinter/flavors/ci_light@v8 # see https://megalinter.io/flavors/ | |
# See https://megalinter.io/configuration/ for all available configurations | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_ALL_CODEBASE: false | |
APPLY_FIXES: none | |
LOG_LEVEL: INFO | |
PRINT_ALPACA: false | |
ENABLE: REPOSITORY | |
ENABLE_LINTERS: BASH_SHELLCHECK,YAML_YAMLLINT,DOCKERFILE_HADOLINT | |
- name: Upload reports | |
if: ${{ success() }} || ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: MegaLinter reports | |
path: | | |
megalinter-reports | |
mega-linter.log |