Skip to content

Commit fa38c1b

Browse files
Add Trivy workflow (#340)
* Update changelog.md * Use vars instead of secrets
1 parent b2ac78f commit fa38c1b

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

.github/workflows/analysis.yml

+11
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,14 @@ jobs:
7474
dependency-review:
7575
name: Dependency Review
7676
uses: wabarc/.github/.github/workflows/reusable-dependency-review.yml@main
77+
78+
trivy:
79+
name: Trivy
80+
uses: wabarc/.github/.github/workflows/reusable-trivy.yml@main
81+
permissions:
82+
contents: read # for actions/checkout to fetch code
83+
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
84+
#actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
85+
with:
86+
scan-type: 'fs'
87+
sarif: 'filesystem.sarif'

.github/workflows/docker.yml

+33-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
3838
permissions:
3939
packages: write
4040
id-token: write
41+
outputs:
42+
image: ${{ steps.prep.outputs.ghcr }}
43+
version: ${{ steps.meta.outputs.version }}
4144
steps:
4245
- name: Harden Runner
4346
uses: step-security/harden-runner@2e205a28d0e1da00c5f53b161f4067b052c61f34 # v1.5.0
@@ -101,7 +104,7 @@ jobs:
101104
if: github.event_name != 'pull_request'
102105
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0
103106
with:
104-
username: ${{ secrets.DOCKER_USERNAME }}
107+
username: ${{ vars.DOCKER_USERNAME }}
105108
password: ${{ secrets.DOCKER_PASSWORD }}
106109

107110
- name: Login to GitHub Container Registry
@@ -182,6 +185,9 @@ jobs:
182185
permissions:
183186
packages: write
184187
id-token: write
188+
outputs:
189+
image: ${{ steps.prep.outputs.ghcr }}
190+
version: ${{ steps.meta.outputs.version }}
185191
steps:
186192
- name: Harden Runner
187193
uses: step-security/harden-runner@2e205a28d0e1da00c5f53b161f4067b052c61f34 # v1.5.0
@@ -308,3 +314,29 @@ jobs:
308314
IMAGE_NAME=${{ steps.prep.outputs.ghcr }}:${{ steps.meta.outputs.version }}
309315
cat cosign.pub
310316
cosign verify --key cosign.pub $IMAGE_NAME
317+
318+
trivy-standalone:
319+
name: Trivy for standalone
320+
uses: wabarc/.github/.github/workflows/reusable-trivy.yml@main
321+
needs: publish
322+
permissions:
323+
contents: read # for actions/checkout to fetch code
324+
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
325+
#actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
326+
with:
327+
scan-type: 'image'
328+
image-ref: '${{ needs.publish.outputs.image }}:${{ needs.publish.outputs.version }}'
329+
sarif: 'container-standalone.sarif'
330+
331+
trivy-bundle:
332+
name: Trivy for bundle
333+
uses: wabarc/.github/.github/workflows/reusable-trivy.yml@main
334+
needs: allinone
335+
permissions:
336+
contents: read # for actions/checkout to fetch code
337+
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
338+
#actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
339+
with:
340+
scan-type: 'image'
341+
image-ref: '${{ needs.allinone.outputs.image }}:${{ needs.allinone.outputs.version }}'
342+
sarif: 'container-bundle.sarif'

docs/changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- Add support for publish to Nostr ([#311](https://github.com/wabarc/wayback/pull/311))
1313
- Message content styling
1414
- Add documentation ([#330](https://github.com/wabarc/wayback/pull/330))
15+
- Add Trivy workflow ([#340](https://github.com/wabarc/wayback/pull/340))
1516

1617
### Changed
1718
- Sign images using cosign

0 commit comments

Comments
 (0)