Disable Dependabot version updates #74
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: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
inputs: | |
validate_all_codebase: | |
type: choice | |
required: true | |
description: The flag to parse the entire repository. | |
default: "false" | |
options: | |
- "true" | |
- "false" | |
permissions: {} | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run Super-Linter | |
uses: super-linter/super-linter/slim@v6 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_ALL_CODEBASE: >- | |
${{ | |
(github.event_name == 'workflow_dispatch' && github.event.inputs.validate_all_codebase == 'true') | |
|| false | |
}} | |
VALIDATE_CHECKOV: false | |
DOCKERFILE_HADOLINT_FILE_NAME: hadolint.yml | |
MARKDOWN_CONFIG_FILE: markdownlint.yml |