Skip to content

Bump github/super-linter from 5 to 6 #129

Bump github/super-linter from 5 to 6

Bump github/super-linter from 5 to 6 #129

Workflow file for this run

---
#########################
#########################
## GitHub Super-Linter ##
#########################
#########################
name: Super-Linter
# https://bit.ly/git-io_workflow-syntax-for-github-actions
#############################
# Start the job on all push #
#############################
on:
push:
#####################################
# Cancel any in-progress job or run #
#####################################
# https://github.com/kdeldycke/workflows/commit/8bee3ba877
# https://docs.github.com/actions/using-jobs/using-concurrency
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-latest
##################
# 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: github/super-linter@v6
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
# Super-Linter requires this variable even if it is unset
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
...