Skip to content

Commit 1dd8124

Browse files
authored
Merge pull request #56 from thedadams/finish-bump-go-1-23-0
2 parents 0733d08 + 732c570 commit 1dd8124

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.golangci.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ run:
22
timeout: 5m
33

44
output:
5-
format: github-actions
5+
formats:
6+
- format: colored-line-number
67

78
linters:
89
disable-all: true

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tidy:
66
test:
77
go test -v ./...
88

9-
GOLANGCI_LINT_VERSION ?= v1.56.1
9+
GOLANGCI_LINT_VERSION ?= v1.60.1
1010
lint:
1111
if ! command -v golangci-lint &> /dev/null; then \
1212
echo "Could not find golangci-lint, installing version $(GOLANGCI_LINT_VERSION)."; \

run.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ func (r *Run) request(ctx context.Context, payload any) (err error) {
371371
r.callsLock.Unlock()
372372
} else if event.Run.Type == EventTypeRunFinish && event.Run.Error != "" {
373373
r.state = Error
374-
r.err = fmt.Errorf(event.Run.Error)
374+
r.err = fmt.Errorf("%s", event.Run.Error)
375375
}
376376
}
377377

0 commit comments

Comments
 (0)