Skip to content

Update sigstore/cosign-installer action to v4 #3319

Update sigstore/cosign-installer action to v4

Update sigstore/cosign-installer action to v4 #3319

Workflow file for this run

name: Test
on:
pull_request:
branches:
- master
paths-ignore:
- charts/**
- docs/**
push:
branches:
- master
paths-ignore:
- charts/**
- docs/**
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Determine Go version from go.mod
run: echo "GO_VERSION=$(go mod edit -json | jq -r .Go)" >> $GITHUB_ENV
- uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
run: make test
- name: Run integration tests
run: make integration-test