feat(container)!: Update image quay.io/minio/minio to v2024 #5083
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 | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: MegaLinter | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate Token | |
uses: tibdex/github-app-token@v2 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.BOT_APP_ID }} | |
private_key: ${{ secrets.BOT_APP_PRIVATE_KEY }} | |
- name: MegaLinter | |
uses: oxsecurity/[email protected] | |
env: | |
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'workflow_dispatch' }} | |
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} | |
ENABLE_LINTERS: ACTION_ACTIONLINT,BASH_SHELLCHECK,GIT_GIT_DIFF,JSON_PRETTIER,KUBERNETES_KUBEVAL,TERRAFORM_TFLINT,YAML_YAMLLINT | |
ACTION_ACTIONLINT_FILTER_REGEX_EXCLUDE: (helm-release-differ.yaml) | |
FILTER_REGEX_EXCLUDE: (.*\\.sops\\.ya?ml) | |
JSON_PRETTIER_CONFIG_FILE: .prettierrc.yaml | |
JSON_PRETTIER_FILTER_REGEX_EXCLUDE: (.vscode) | |
KUBERNETES_DIRECTORY: cluster | |
KUBERNETES_KUBEVAL_ARGUMENTS: --ignore-missing-schemas | |
TERRAFORM_TFLINT_CONFIG_FILE: .tflint.hcl | |
YAML_YAMLLINT_CONFIG_FILE: .yamllint.yaml |