bump wincent from c7f67de
to 8eddc0d
(#1090)
#2102
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
--- | |
######################### | |
######################### | |
## GitHub Super-Linter ## | |
######################### | |
######################### | |
name: Super-Linter | |
# https://bit.ly/git-io_workflow-syntax-for-github-actions | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
############################ | |
# Ensure safer permissions # | |
############################ | |
permissions: | |
contents: read | |
##################################### | |
# Cancel any in-progress job or run # | |
##################################### | |
concurrency: | |
# cancel any in-progress job or run | |
# https://github.com/kdeldycke/workflows/commit/8bee3ba877 | |
# https://docs.github.com/actions/using-jobs/using-concurrency | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
build: | |
# Name the Job | |
name: Lint Code Base | |
# Set the agent to run on | |
runs-on: ubuntu-22.04 | |
################## | |
# Load all steps # | |
################## | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
# Super-Linter requires full repository history for analysis | |
fetch-depth: 0 | |
################################ | |
# Run Linter against code base # | |
################################ | |
- name: Lint Code Base | |
uses: super-linter/super-linter@v7 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
# Super-Linter requires this variable even if it is unset | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
... |