Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

# setup-go reads go.work's `toolchain` line ahead of its `go` line, so the scan
# runs on the toolchain the services ship, not whatever 1.24.x the runner cached.
- uses: actions/setup-go@v6
- uses: actions/setup-go@v7
with:
go-version-file: go.work
# No go.sum exists to hash — the Go half takes no third-party dependency.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
# Keyed on the go.mod files rather than go.sum: the Go half takes no
# third-party dependency, so no go.sum exists to hash. A guard on go.work being present
# would turn a lost workspace file into a skipped gate rather than a failing one.
- uses: actions/setup-go@v6
- uses: actions/setup-go@v7
with:
go-version-file: go.work
cache-dependency-path: |
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: actions/setup-go@v6
- uses: actions/setup-go@v7
with:
go-version-file: go.work
cache-dependency-path: |
Expand Down
Loading