Skip to content

Bump actions/checkout from 5 to 6 #371

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #371

Workflow file for this run

name: check
#############################
# Start the job on all push #
#############################
on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
paths:
- 'mkdocs.yml'
- 'docs/**'
- 'includes/**'
- 'overrides/**'
###############
# 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@v6
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: super-linter/super-linter/slim@v8
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_MARKDOWN: true
VALIDATE_YAML: true
IGNORE_GITIGNORED_FILES: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}