|
38 | 38 | permissions:
|
39 | 39 | packages: write
|
40 | 40 | id-token: write
|
| 41 | + outputs: |
| 42 | + image: ${{ steps.prep.outputs.ghcr }} |
| 43 | + version: ${{ steps.meta.outputs.version }} |
41 | 44 | steps:
|
42 | 45 | - name: Harden Runner
|
43 | 46 | uses: step-security/harden-runner@2e205a28d0e1da00c5f53b161f4067b052c61f34 # v1.5.0
|
@@ -101,7 +104,7 @@ jobs:
|
101 | 104 | if: github.event_name != 'pull_request'
|
102 | 105 | uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0
|
103 | 106 | with:
|
104 |
| - username: ${{ secrets.DOCKER_USERNAME }} |
| 107 | + username: ${{ vars.DOCKER_USERNAME }} |
105 | 108 | password: ${{ secrets.DOCKER_PASSWORD }}
|
106 | 109 |
|
107 | 110 | - name: Login to GitHub Container Registry
|
@@ -182,6 +185,9 @@ jobs:
|
182 | 185 | permissions:
|
183 | 186 | packages: write
|
184 | 187 | id-token: write
|
| 188 | + outputs: |
| 189 | + image: ${{ steps.prep.outputs.ghcr }} |
| 190 | + version: ${{ steps.meta.outputs.version }} |
185 | 191 | steps:
|
186 | 192 | - name: Harden Runner
|
187 | 193 | uses: step-security/harden-runner@2e205a28d0e1da00c5f53b161f4067b052c61f34 # v1.5.0
|
@@ -308,3 +314,29 @@ jobs:
|
308 | 314 | IMAGE_NAME=${{ steps.prep.outputs.ghcr }}:${{ steps.meta.outputs.version }}
|
309 | 315 | cat cosign.pub
|
310 | 316 | 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' |
0 commit comments