Skip to content

Commit

Permalink
Merge pull request #29 from actions/dependabot/github_actions/super-l…
Browse files Browse the repository at this point in the history
…inter/super-linter-6

Bump super-linter/super-linter from 5 to 6
  • Loading branch information
ncalteen committed Feb 22, 2024
2 parents 290a125 + e01cee8 commit 71963a9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/linters/.checkov.yml
@@ -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 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -2,6 +2,8 @@ name: Continuous Integration

on:
pull_request:
branches:
- main
push:
branches:
- main
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/linter.yml
Expand Up @@ -2,6 +2,8 @@ name: Lint Codebase

on:
pull_request:
branches:
- main
push:
branches:
- main
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Expand Up @@ -7,6 +7,6 @@ GREETING="Hello, $INPUT_WHO_TO_GREET!"
echo "::notice file=entrypoint.sh,line=7::$GREETING"

Check notice on line 7 in entrypoint.sh

View workflow job for this annotation

GitHub Actions / GitHub Actions Test

Hello, Mona Lisa Octocat!

Check notice on line 7 in entrypoint.sh

View workflow job for this annotation

GitHub Actions / Docker Tests

Hello, Mona Lisa Octocat!

# Write outputs to the $GITHUB_OUTPUT file
echo "greeting=$GREETING" >> "$GITHUB_OUTPUT"
echo "greeting=$GREETING" >>"$GITHUB_OUTPUT"

exit 0

0 comments on commit 71963a9

Please sign in to comment.