Skip to content

chore(deps): bump github.com/sigstore/fulcio from 1.7.1 to 1.8.3 #57

chore(deps): bump github.com/sigstore/fulcio from 1.7.1 to 1.8.3

chore(deps): bump github.com/sigstore/fulcio from 1.7.1 to 1.8.3 #57

Workflow file for this run

name: Test
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Cache Go modules
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run tests
run: make test-unit