We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 413cd89 commit 7062a24Copy full SHA for 7062a24
.github/workflows/scan-solr-k8s.yaml
@@ -0,0 +1,19 @@
1
+name: Anchore Scan gdcc/solr-k8s
2
+on:
3
+ pull_request:
4
+jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v2
9
+ - name: Build the Container image
10
+ run: docker build docker/solr-k8s --tag localbuild/testimage:latest
11
+ - uses: anchore/scan-action@main
12
+ id: scan
13
+ with:
14
+ image: "localbuild/testimage:latest"
15
+ acs-report-enable: true
16
+ - name: upload Anchore scan SARIF report
17
+ uses: github/codeql-action/upload-sarif@v1
18
19
+ sarif_file: ${{ steps.scan.outputs.sarif }}
0 commit comments