diff --git a/.github/workflows/example.yaml b/.github/workflows/example.yaml index de214d7..1925276 100644 --- a/.github/workflows/example.yaml +++ b/.github/workflows/example.yaml @@ -1,7 +1,7 @@ name: Kubescape scanning for misconfigurations on: release: - types: [published] + types: [released] jobs: kubescape: runs-on: ubuntu-latest diff --git a/README.md b/README.md index b83524f..dddd828 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,7 @@ jobs: steps: - uses: actions/checkout@v3 - uses: kubescape/github-action@main + continue-on-error: true with: files: "kubernetes-manifests/*.yaml" - name: Archive kubescape scan results @@ -115,6 +116,7 @@ jobs: steps: - uses: actions/checkout@v3 - uses: kubescape/github-action@main + continue-on-error: true with: framework: | nsa,mitre @@ -143,6 +145,7 @@ jobs: steps: - uses: actions/checkout@v3 - uses: kubescape/github-action@main + continue-on-error: true with: failedThreshold: 50 - name: Archive kubescape scan results @@ -169,6 +172,7 @@ jobs: steps: - uses: action/checkout@v3 - uses: kubescape/github-action@main + continue-on-error: true with: thresholdCritical: 1 thresholdHigh: 5 diff --git a/action.yml b/action.yml index 140dfb6..453ada1 100644 --- a/action.yml +++ b/action.yml @@ -55,6 +55,5 @@ inputs: default: junit runs: using: docker - image: quay.io/dwertent/github-actions - # image: quay.io/kubescape/github-actions:latest + image: quay.io/kubescape/github-actions