build(deps): Bump actions/attest-build-provenance from 3.1.0 to 3.2.0 #305
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-24.04] | |
| go: ["1.24.7", "1.25.1"] | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Code checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup Go | |
| uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: go mod download | |
| env: | |
| CGO_ENABLED: 0 | |
| run: | | |
| go mod download | |
| - name: go test | |
| env: | |
| CGO_ENABLED: 0 | |
| run: | | |
| # This ShellCheck disable is for word-splitting which is something we | |
| # need to occur for this command to work correctly. | |
| # | |
| # shellcheck disable=SC2046 | |
| go test $(go list ./... | grep -v /e2e) | |
| - name: go test -race | |
| env: | |
| CGO_ENABLED: 1 | |
| run: | | |
| # This ShellCheck disable is for word-splitting which is something we | |
| # need to occur for this command to work correctly. | |
| # | |
| # shellcheck disable=SC2046 | |
| go test -race $(go list ./... | grep -v /e2e) |