From 272c21a43745dbbae65e8fb5bfc5935f5414ce0b Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Thu, 22 Feb 2024 09:12:34 -0500 Subject: [PATCH] Fix fetch depth --- .github/linters/.checkov.yml | 6 ++++++ .github/workflows/linter.yml | 2 ++ Dockerfile | 2 ++ 3 files changed, 10 insertions(+) create mode 100644 .github/linters/.checkov.yml diff --git a/.github/linters/.checkov.yml b/.github/linters/.checkov.yml new file mode 100644 index 0000000..c306051 --- /dev/null +++ b/.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 diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 20d0f0c..428ca1b 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -20,6 +20,8 @@ jobs: - name: Checkout id: checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup Node.js id: setup-node diff --git a/Dockerfile b/Dockerfile index 8ca2dd0..2624dfa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ FROM node:slim # Create a directory for the action code RUN mkdir -p /usr/src/app + +# Set the working directory inside the container. WORKDIR /usr/src/app # Copy the repository contents to the container