Bump sigstore/cosign-installer from ef6a6b364bbad08abd36a5f8af60b595d12702f8 to 9614fae9e5c5eddabb09f90a270fcb487c9f7149 #214
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
pull_request: | |
permissions: {} | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
image: | |
- aws-auth | |
- github-issue-opener | |
- image-copy-ecr | |
- image-copy-gcr | |
- image-diff | |
- jira-issue-opener | |
- slack-webhook | |
- tag-history | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | |
with: | |
go-version-file: ${{ matrix.image }}/go.mod | |
- uses: ko-build/setup-ko@ace48d793556083a76f1e3e6068850c1f4a369aa # v0.6 | |
- uses: chainguard-dev/actions/setup-registry@main | |
- working-directory: ${{ matrix.image }} | |
run: | | |
KO_DOCKER_REPO=localhost:1338/test ko build --image-refs=ko.images --bare . | |
echo "KO build $(cat ko.images)" |