Fix linting errors

This commit is contained in:
Nick Alteen
2024-02-22 09:49:41 -05:00
parent 885a2b4891
commit e01cee858b
4 changed files with 13 additions and 1 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: on:
pull_request: pull_request:
branches:
- main
push: push:
branches: branches:
- main - main
+4
View File
@@ -2,6 +2,8 @@ name: Lint Codebase
on: on:
pull_request: pull_request:
branches:
- main
push: push:
branches: branches:
- main - main
@@ -20,6 +22,8 @@ jobs:
- name: Checkout - name: Checkout
id: checkout id: checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint Codebase - name: Lint Codebase
id: super-linter id: super-linter
+1 -1
View File
@@ -7,6 +7,6 @@ GREETING="Hello, $INPUT_WHO_TO_GREET!"
echo "::notice file=entrypoint.sh,line=7::$GREETING" echo "::notice file=entrypoint.sh,line=7::$GREETING"
# Write outputs to the $GITHUB_OUTPUT file # Write outputs to the $GITHUB_OUTPUT file
echo "greeting=$GREETING" >> "$GITHUB_OUTPUT" echo "greeting=$GREETING" >>"$GITHUB_OUTPUT"
exit 0 exit 0