Skip to content

Update super-linter/super-linter action to v6.6.0 (#1008) #2195

Update super-linter/super-linter action to v6.6.0 (#1008)

Update super-linter/super-linter action to v6.6.0 (#1008) #2195

Workflow file for this run

---
#################################
#################################
## Super Linter GitHub Actions ##
#################################
#################################
name: Lint Code Base
#
# Documentation:
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
packages: read
statuses: write
###############
# 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.1.6
with:
# Full git history is needed to get a proper list
# of changed files within `super-linter`
fetch-depth: 0
- uses: actions/setup-node@v4.0.2
with:
cache: npm
- run: bash "${GITHUB_WORKSPACE}/scripts/super_linter/build/set_path.sh"
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: super-linter/super-linter/slim@v6.6.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: main
LINTER_RULES_PATH: .
VALIDATE_JSCPD: false
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true