From b4c96aff887a870805783b7ee9aa75aba2306060 Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Fri, 31 Oct 2025 10:07:49 -0400 Subject: [PATCH 1/4] Add workflow dispatch trigger --- .github/workflows/linter.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 09340eb..7ab248b 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -12,6 +12,7 @@ on: push: branches: - main + workflow_dispatch: permissions: contents: read From c699128fd83148bf02d9dfbd17e993618a580e53 Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Fri, 31 Oct 2025 10:09:40 -0400 Subject: [PATCH 2/4] Update badges --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 093542d..2c16895 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Create a Container Action -[![GitHub Super-Linter](https://github.com/actions/container-action/actions/workflows/linter.yml/badge.svg)](https://github.com/super-linter/super-linter) ![Continuous Integration](https://github.com/actions/container-action/actions/workflows/ci.yml/badge.svg) +![Linter](https://github.com/actions/container-action/actions/workflows/linter.yml/badge.svg) Use this template to bootstrap the creation of a container action. :rocket: From 2084100763062b4f9c600332771397cc7b74611e Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Fri, 31 Oct 2025 10:15:23 -0400 Subject: [PATCH 3/4] Disable biome and zizmor --- .checkov.yaml => .checkov.yml | 0 .github/workflows/linter.yml | 4 ++++ .trivyignore | 2 ++ 3 files changed, 6 insertions(+) rename .checkov.yaml => .checkov.yml (100%) create mode 100644 .trivyignore diff --git a/.checkov.yaml b/.checkov.yml similarity index 100% rename from .checkov.yaml rename to .checkov.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 7ab248b..a0c4ff9 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -35,7 +35,11 @@ jobs: id: super-linter uses: super-linter/super-linter/slim@v8 env: + CHECKOV_FILE_NAME: .checkov.yml DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} LINTER_RULES_PATH: ${{ github.workspace }} VALIDATE_ALL_CODEBASE: true + VALIDATE_BIOME_FORMAT: false + VALIDATE_BIOME_LINT: false + VALIDATE_GITHUB_ACTIONS_ZIZMOR: false diff --git a/.trivyignore b/.trivyignore new file mode 100644 index 0000000..7a2f130 --- /dev/null +++ b/.trivyignore @@ -0,0 +1,2 @@ +AVD-DS-0002 +AVD-DS-0026 From 3eb6b2e2e14edea06a399ca3f41718b472d76f4d Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Fri, 31 Oct 2025 10:20:06 -0400 Subject: [PATCH 4/4] Set path --- .github/workflows/linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index a0c4ff9..872c7c0 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -38,7 +38,7 @@ jobs: CHECKOV_FILE_NAME: .checkov.yml DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - LINTER_RULES_PATH: ${{ github.workspace }} + LINTER_RULES_PATH: . VALIDATE_ALL_CODEBASE: true VALIDATE_BIOME_FORMAT: false VALIDATE_BIOME_LINT: false