Skip to content

Fix flaky terratests #4561

Fix flaky terratests

Fix flaky terratests #4561

Workflow file for this run

name: KubeLinter
on:
push:
paths:
- 'chart/k8gb/**'
pull_request:
branches:
- master
paths-ignore:
- 'chart/k8gb/**'
permissions:
contents: read
jobs:
scan:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@394d78e5b40cc35c170eb909b1f81551f37feb05
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Create ../results directory for sarif files
shell: bash
run: mkdir -p ../results
- name: Scan k8gb chart
id: kube-lint-repo
uses: stackrox/kube-linter-action@3e0698d47a525061e50c1380af263c18824c748b
with:
directory: chart/k8gb
version: 0.2.5
format: sarif
output-file: ../results/kube-linter.sarif
- name: Upload sarif output to GitHub
uses: github/codeql-action/upload-sarif@0d0a53cb13a3d7e73a70582e3e846fd04745744a
continue-on-error: true