mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
Create anchore-scan-action.yaml
This commit is contained in:
parent
7cea821a54
commit
2e9fdfeaf8
1 changed files with 27 additions and 0 deletions
27
.github/workflows/anchore-scan-action.yaml
vendored
Normal file
27
.github/workflows/anchore-scan-action.yaml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: anchore-scan-action
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build the Docker image
|
||||
run: docker build . --file Dockerfile --tag localbuild/testimage:latest
|
||||
# https://github.com/marketplace/actions/anchore-container-scan
|
||||
- uses: anchore/scan-action@v1
|
||||
with:
|
||||
image-reference: "localbuild/testimage:latest"
|
||||
dockerfile-path: "Dockerfile"
|
||||
#fail-build: true
|
||||
acs-report-enable: true
|
||||
#debug: true
|
||||
#acs-report-severity-cutoff: "Medium"
|
||||
include-app-packages: true
|
||||
#- name: anchore inline scan JSON results
|
||||
# run: for j in `ls ./anchore-reports/*.json`; do echo "---- ${j} ----"; cat ${j}; echo; done
|
||||
- name: anchore action SARIF report
|
||||
run: cat results.sarif
|
||||
- name: upload Anchore scan SARIF report
|
||||
uses: github/codeql-action/upload-sarif@v1
|
||||
with:
|
||||
sarif_file: results.sarifb
|
Loading…
Add table
Add a link
Reference in a new issue