Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
strategy:
matrix:
go:
- "1.23"
- "1.24"
- "1.25"
- "1.26"
steps:
- uses: actions/checkout@v3

Expand All @@ -29,8 +29,8 @@ jobs:
strategy:
matrix:
go:
- "1.23"
- "1.24"
- "1.25"
- "1.26"
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion fmttests/datadriven_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ var leafCommands = map[string]commandFn{
},

"unimplemented": func(_ error, args []arg) error {
return issuelink.UnimplementedErrorf(issuelink.IssueLink{IssueURL: "https://mysite", Detail: "issuedetails"}, strfy(args))
return issuelink.UnimplementedErrorf(issuelink.IssueLink{IssueURL: "https://mysite", Detail: "issuedetails"}, "%s", strfy(args))
},
}

Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/cockroachdb/errors

go 1.23.0

toolchain go1.23.8
go 1.25.0

require (
github.com/cockroachdb/datadriven v1.0.2
Expand Down
Loading