Skip to content

chore(deps): update sigstore/cosign-installer action to v3.5.0 #1094

chore(deps): update sigstore/cosign-installer action to v3.5.0

chore(deps): update sigstore/cosign-installer action to v3.5.0 #1094

Workflow file for this run

name: Unit Tests
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
- "goreleaser.yml"
permissions:
contents: read
# Abort prior jobs in the same workflow / PR
concurrency:
group: unit-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup golang
uses: ./.github/actions/golang
- name: Run unit tests
run: make test-unit
- name: Save logs
if: always()
uses: ./.github/actions/save-logs