Bump github.com/sigstore/sigstore-go from 1.2.0 to 1.2.1 in /tools (#68) #206
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| name: Run on Ubuntu | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone the code | |
| uses: actions/checkout@v7 | |
| with: | |
| # ci-verify runs release-snapshot, which needs tags: goreleaser | |
| # derives the snapshot version and hack/gen-capi-metadata.sh derives | |
| # the release series from them. | |
| fetch-depth: 0 | |
| - name: Setup Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: go.mod | |
| cache-dependency-path: | | |
| go.sum | |
| tools/go.sum | |
| - name: Cache local tool binaries | |
| uses: actions/cache@v6 | |
| with: | |
| path: bin | |
| key: tools-test-${{ runner.os }}-${{ hashFiles('Makefile', '.custom-gcl.yml', 'tools/go.sum') }} | |
| restore-keys: | | |
| tools-test-${{ runner.os }}- | |
| - name: Running Tests | |
| run: | | |
| make ci-verify |