Bump sigstore/cosign-installer from 37f387123cf7d4270454d0c351cf673ef28a8662 to 11086d25041f77fe8fe7b9ea4e48e3b9192b8f19 #150
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: | |
- github-issue-opener | |
- slack-webhook | |
- jira-issue-opener | |
- image-copy-gcr | |
- image-copy-ecr | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | |
with: | |
go-version: '1.20' | |
check-latest: true | |
- uses: ko-build/setup-ko@ace48d793556083a76f1e3e6068850c1f4a369aa # v0.6 | |
- uses: chainguard-dev/actions/setup-registry@main | |
- name: Build | |
working-directory: ${{ matrix.image }}/cmd/app | |
run: | | |
KO_DOCKER_REPO=localhost:1338/test ko build --image-refs=ko.images --bare . | |
echo "KO build $(cat ko.images)" |