Skip to content

Commit

Permalink
Bump super-linter to v5 slim
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdkleijn committed Jan 24, 2024
1 parent c907abc commit 2a6a038
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name: Lint Code Base
#############################
# Start the job on all push #
#############################
on:
on: # yamllint disable-line rule:truthy
push:
# Remove the line above to run when pushing to master
pull_request:
Expand All @@ -29,6 +29,12 @@ jobs:
# Set the agent to run on
runs-on: ubuntu-latest

permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write

##################
# Load all steps #
##################
Expand All @@ -37,7 +43,7 @@ jobs:
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand All @@ -46,7 +52,7 @@ jobs:
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@v4
uses: super-linter/super-linter/slim@v5
env:
VALIDATE_ALL_CODEBASE: false
# Change to 'master' if your main branch differs
Expand Down

0 comments on commit 2a6a038

Please sign in to comment.