Merge pull request #29 from actions/dependabot/github_actions/super-linter/super-linter-6

Bump super-linter/super-linter from 5 to 6
This commit is contained in:
Nick Alteen
2024-02-22 09:51:41 -05:00
committed by GitHub
4 changed files with 14 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
quiet: true
skip-check:
# Ensure that HEALTHCHECK instructions have been added to container images
- CKV_DOCKER_2
# Ensure that a user for the container has been created
- CKV_DOCKER_3
+2
View File
@@ -2,6 +2,8 @@ name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
+5 -1
View File
@@ -2,6 +2,8 @@ name: Lint Codebase
on:
pull_request:
branches:
- main
push:
branches:
- main
@@ -20,10 +22,12 @@ jobs:
- name: Checkout
id: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint Codebase
id: super-linter
uses: super-linter/super-linter/slim@v5
uses: super-linter/super-linter/slim@v6
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+1 -1
View File
@@ -7,6 +7,6 @@ GREETING="Hello, $INPUT_WHO_TO_GREET!"
echo "::notice file=entrypoint.sh,line=7::$GREETING"
# Write outputs to the $GITHUB_OUTPUT file
echo "greeting=$GREETING" >> "$GITHUB_OUTPUT"
echo "greeting=$GREETING" >>"$GITHUB_OUTPUT"
exit 0