mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.3 to 4.5.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](b4b15b8c7c...6f51ac03b9
)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
88 lines
2.8 KiB
YAML
88 lines
2.8 KiB
YAML
name: Publish image
|
|
|
|
description: Publishes a docker image, SBOM, scans vulns, and signs the image.
|
|
|
|
inputs:
|
|
makefile-target:
|
|
required: true
|
|
description: makefile target to invoke for publishing image with ko
|
|
registry:
|
|
required: true
|
|
description: registry to publish image to
|
|
registry-username:
|
|
required: true
|
|
description: registry credentials username
|
|
registry-password:
|
|
required: true
|
|
description: registry credentials password
|
|
repository:
|
|
required: true
|
|
description: repository to publish image to
|
|
version:
|
|
required: true
|
|
description: published image version
|
|
sign-image:
|
|
required: true
|
|
description: sign image
|
|
sbom-name:
|
|
required: true
|
|
description: name of the cyclonedx sbom
|
|
sbom-repository:
|
|
required: true
|
|
description: sbom repository
|
|
signature-repository:
|
|
required: true
|
|
description: signature repository
|
|
main-path:
|
|
required: true
|
|
description: path to main go entry point
|
|
|
|
outputs:
|
|
digest:
|
|
value: ${{ steps.digest.outputs.digest }}
|
|
description: published image digest
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
id: ko-publish
|
|
env:
|
|
REGISTRY: ${{ inputs.registry }}
|
|
REPO: ${{ inputs.repository }}
|
|
REGISTRY_PASSWORD: ${{ inputs.registry-password }}
|
|
COSIGN_REPOSITORY: ${{ inputs.sbom-repository }}
|
|
run: |
|
|
set -e
|
|
echo "digest=$(VERSION=${{ inputs.version }} make ${{ inputs.makefile-target }})" >> $GITHUB_OUTPUT
|
|
- uses: CycloneDX/gh-gomod-generate-sbom@efc74245d6802c8cefd925620515442756c70d8f # v2.0.0
|
|
with:
|
|
version: v1
|
|
args: app -licenses -json -output ${{ inputs.sbom-name }}-bom.cdx.json -main ${{ inputs.main-path }}
|
|
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
|
|
with:
|
|
name: ${{ inputs.sbom-name }}-bom-cdx
|
|
path: ${{ inputs.sbom-name }}-bom.cdx.json
|
|
- shell: bash
|
|
if: ${{ inputs.sign-image == 'true' }}
|
|
env:
|
|
COSIGN_REPOSITORY: ${{ inputs.signature-repository }}
|
|
run: |
|
|
set -e
|
|
cosign sign --yes \
|
|
-a "repo=${{ github.repository }}" \
|
|
-a "workflow=${{ github.workflow }}" \
|
|
-a "ref=${{ github.sha }}" \
|
|
${{ steps.ko-publish.outputs.digest }}
|
|
- shell: bash
|
|
env:
|
|
COSIGN_REPOSITORY: ${{ inputs.sbom-repository }}
|
|
run: |
|
|
cosign attach sbom --sbom ./${{ inputs.sbom-name }}-bom.cdx.json --type cyclonedx ${{ steps.ko-publish.outputs.digest }}
|
|
- shell: bash
|
|
id: digest
|
|
run: |
|
|
echo "The image generated is: ${{ steps.ko-publish.outputs.digest }}"
|
|
DIGEST=$(echo ${{ steps.ko-publish.outputs.digest }} | cut -d '@' -f2)
|
|
echo "Digest from image is: $DIGEST"
|
|
echo "digest=$DIGEST" >> $GITHUB_OUTPUT
|