-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (36 loc) · 1004 Bytes
/
kubescape-scan.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Kubescape PUSH scanning for misconfigurations
on: [push, workflow_dispatch]
jobs:
kubescape:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Scan with Kubescape
uses: kubescape/github-action@main
continue-on-error: true
with:
format: pdf
outputFile: report
account: ${{ secrets.KUBESCAPE_ACCOUNT }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Kubescape Report
path: report.pdf
retention-days: 1
report:
needs: kubescape
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Download a single artifact
uses: actions/download-artifact@v3
with:
name: Kubescape Report
- name: Read that report
run: |
man report.pdf