Bump actions/checkout from 4.1.6 to 4.1.7 #403
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 Project | |
on: | |
merge_group: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize] | |
permissions: read-all | |
jobs: | |
super-lint: | |
# Name the Job | |
name: Lint code base | |
# Set the type of machine to run on | |
runs-on: ubuntu-latest | |
steps: | |
# Checks out a copy of your repository on the ubuntu-latest machine | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
# Get all history to be able to identify changed files | |
fetch-depth: 0 | |
# Runs the Super-Linter action | |
- name: Run Super-Linter | |
uses: super-linter/super-linter/[email protected] | |
env: | |
DEFAULT_BRANCH: main | |
# only log identified linting issues | |
LOG_LEVEL: NOTICE | |
# Only lint new and modified files | |
VALIDATE_ALL_CODEBASE: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Disable cpplint as it conflicts with clang-format | |
VALIDATE_CPP: false |