From 98d518aea6d80b68384ff1226349862dd08b4658 Mon Sep 17 00:00:00 2001 From: "Shiny." Date: Mon, 4 Nov 2024 10:02:05 -0800 Subject: [PATCH] feat(security): added kubesec for helm repos --- .github/workflows/kubesec.yml | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/kubesec.yml diff --git a/.github/workflows/kubesec.yml b/.github/workflows/kubesec.yml new file mode 100644 index 0000000..f11806f --- /dev/null +++ b/.github/workflows/kubesec.yml @@ -0,0 +1,41 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Kubesec + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '38 11 * * 2' + +jobs: + lint: + name: Kubesec + runs-on: ubuntu-20.04 + permissions: + actions: read + contents: read + security-events: write + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run kubesec scanner + uses: controlplaneio/kubesec-action@43d0ddff5ffee89a6bb9f29b64cd865411137b14 + with: + input: file.yaml # specify configuration file to scan here + format: template + template: template/sarif.tpl + output: kubesec-results.sarif + exit-code: "0" + + - name: Upload Kubesec scan results to GitHub Security tab + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: kubesec-results.sarif