Merge pull request #1143 from Nordix/bump/envtest #343
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kubesec | |
on: | |
push: | |
branches: [ main ] | |
schedule: | |
- cron: '30 7 * * 3' | |
permissions: | |
contents: read | |
jobs: | |
setup: | |
# This workflow is only of value to the metal3-io/cluster-api-provider-metal3 repository and | |
# would always fail in forks | |
if: github.repository == 'metal3-io/cluster-api-provider-metal3' | |
runs-on: ubuntu-20.04 | |
permissions: | |
actions: read | |
contents: read | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Collect all yaml | |
id: list_yaml | |
run: | | |
LIST_YAML="$(find * -type f -name '*.yaml' ! -name "clusterctl-cluster.yaml")" | |
echo "::set-output name=value::$(IFS=$','; echo $LIST_YAML | jq -cnR '[inputs | select(length>0)]'; IFS=$'\n')" | |
outputs: | |
matrix: ${{ steps.list_yaml.outputs.value }} | |
lint: | |
needs: [ setup ] | |
name: Kubesec | |
runs-on: ubuntu-20.04 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
matrix: | |
value: ${{ fromJson(needs.setup.outputs.matrix) }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Run kubesec scanner | |
uses: controlplaneio/kubesec-action@43d0ddff5ffee89a6bb9f29b64cd865411137b14 | |
with: | |
input: ${{ matrix.value }} | |
format: template | |
template: template/sarif.tpl | |
output: ${{ matrix.value }}.sarif | |
exit-code: "0" | |
- name: Save result into a variable | |
id: save_result | |
run: echo "::set-output name=result::$(cat ${{ matrix.value }}.sarif | jq -c '.runs')" | |
- name: Upload Kubesec scan results to GitHub Security tab | |
if: ${{ steps.save_result.outputs.result != '[]' }} | |
uses: github/codeql-action/upload-sarif@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5 | |
with: | |
sarif_file: ${{ matrix.value }}.sarif |