Skip to content

Bump github.com/sigstore/sigstore from 1.8.11 to 1.8.12 #386

Bump github.com/sigstore/sigstore from 1.8.11 to 1.8.12

Bump github.com/sigstore/sigstore from 1.8.11 to 1.8.12 #386

Workflow file for this run

name: Code-Generation
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
permissions:
contents: read
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: ./go.mod
- run: go generate ./...
- name: git diff
run: |
git diff --compact-summary --exit-code || \
(echo; echo "Unexpected difference in directories after code generation. Run 'go generate ./...' command and commit."; exit 1)