Skip to content

Commit 753b99b

Browse files
committed
updated: dependencies for the next release
1 parent 74c53a7 commit 753b99b

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/build.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -82,21 +82,22 @@ jobs:
8282
with:
8383
command: cves,sbom
8484
image: ghcr.io/ammnt/angie:${{ env.APP_VERSION }}
85-
sarif-file: sarif.output.json
85+
sarif-file: scout.report.json
8686
summary: false
8787

8888
- name: Upload Docker Scout report📊
89-
uses: github/codeql-action/upload-sarif@v3
89+
uses: actions/upload-artifact@v4.6.0
9090
with:
91-
sarif_file: sarif.output.json
91+
name: scout.report.json
92+
path: "${{ github.workspace }}/scout.report.json"
9293

9394
- name: Analyze image with Trivy💊
9495
uses: aquasecurity/trivy-action@0.29.0
9596
with:
9697
image-ref: ghcr.io/ammnt/angie:${{ env.APP_VERSION }}
9798
scan-type: image
9899
format: "github"
99-
output: "dependency-results.sbom.json"
100+
output: "trivy.report.json"
100101
severity: "MEDIUM,HIGH,CRITICAL"
101102
scanners: "vuln"
102103
github-pat: ${{ secrets.GH_TOKEN }}
@@ -105,7 +106,7 @@ jobs:
105106
uses: actions/upload-artifact@v4.6.0
106107
with:
107108
name: trivy.report.json
108-
path: "${{ github.workspace }}/dependency-results.sbom.json"
109+
path: "${{ github.workspace }}/trivy.report.json"
109110

110111
- name: Analyze image with Grype💊
111112
id: anchore
@@ -120,7 +121,7 @@ jobs:
120121
- name: Upload Grype report📊
121122
uses: actions/upload-artifact@v4.6.0
122123
with:
123-
name: snyk.report.json
124+
name: grype.report.json
124125
path: "${{ github.workspace }}/grype.report.json"
125126

126127
- name: Analyze image with Syft💊
@@ -161,7 +162,7 @@ jobs:
161162
with:
162163
image: ghcr.io/ammnt/angie:${{ env.APP_VERSION }}
163164
format: "json"
164-
output: "result.json"
165+
output: "dockle.report.json"
165166
exit-code: "1"
166167
exit-level: "warn"
167168
ignore: "CIS-DI-0010"
@@ -171,7 +172,7 @@ jobs:
171172
if: always()
172173
with:
173174
name: dockle.report.json
174-
path: "${{ github.workspace }}/result.json"
175+
path: "${{ github.workspace }}/dockle.report.json"
175176

176177
- name: Slim the Docker image🚀
177178
uses: kitabisa/docker-slim-action@v1.2.0

0 commit comments

Comments
 (0)