Skip to content

chore(deps): bump github.com/sigstore/timestamp-authority/v2 from 2.0.3 to 2.0.6 #2111

chore(deps): bump github.com/sigstore/timestamp-authority/v2 from 2.0.3 to 2.0.6

chore(deps): bump github.com/sigstore/timestamp-authority/v2 from 2.0.3 to 2.0.6 #2111

Workflow file for this run

name: goclean
permissions:
contents: read
on:
push:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
branches:
- main
- release-*
pull_request:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
branches:
- main
- release-*
schedule:
- cron: '41 20 * * 1'
jobs:
goclean:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version-file: "go.mod"
cache: false
- name: go vet
run: |
# Use in-place vendored dependencies.
go vet -mod=vendor ./...
# If this workflow fails, run `go fmt` on your tree and resubmit.
# We ignore vendor/ files whose format we don't control.
- name: go fmt
run: if [ "$(gofmt -l . | grep -v vendor/ | grep -v third_party/ | wc -l)" -gt 0 ]; then exit 1; fi