Bump sigs.k8s.io/release-utils from 0.8.4 to 0.8.5 #113
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: Zot registry tests | |
# Run on every push, and allow it to be run manually. | |
on: | |
workflow_dispatch: | |
push: | |
branches: ['main', 'v*'] | |
pull_request: | |
env: | |
REGISTRY: localhost:5001 | |
jobs: | |
docker-registry-v2-tests: | |
# Skip if running in a fork that might not have secrets configured. | |
if: ${{ github.repository == 'venafi/sigscan' }} | |
name: Run tests | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v3.1.0 | |
- uses: actions/setup-go@v3.3.0 | |
with: | |
go-version: '1.22' | |
check-latest: true | |
- name: Install Cosign | |
uses: sigstore/cosign-installer@main | |
- name: Run zot and publish test image | |
run: | | |
docker run -d -p 5001:5000 --name zotregistry ghcr.io/project-zot/zot-linux-amd64:latest | |
skopeo --insecure-policy copy --dest-tls-verify=false --src-tls-verify=false --format=oci docker://docker.io/alpine:latest docker://${{ env.REGISTRY }}/alpine:signed | |
- name: Sign with cosign | |
run: | | |
COSIGN_PASSWORD=1234 cosign sign --tlog-upload=false --allow-http-registry --allow-insecure-registry --key test/identities/signer1.key --certificate test/identities/signer1.crt ${{ env.REGISTRY }}/alpine:signed | |
- name: build sigscan and check | |
shell: bash | |
run: | | |
set -e | |
make sigscan | |
./sigscan repo ${{ env.REGISTRY }} --output json --insecure | jq | |