Skip to content

Commit

Permalink
Merge pull request #56 from thedadams/finish-bump-go-1-23-0
Browse files Browse the repository at this point in the history
  • Loading branch information
thedadams authored Aug 14, 2024
2 parents 0733d08 + 732c570 commit 1dd8124
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ run:
timeout: 5m

output:
format: github-actions
formats:
- format: colored-line-number

linters:
disable-all: true
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tidy:
test:
go test -v ./...

GOLANGCI_LINT_VERSION ?= v1.56.1
GOLANGCI_LINT_VERSION ?= v1.60.1
lint:
if ! command -v golangci-lint &> /dev/null; then \
echo "Could not find golangci-lint, installing version $(GOLANGCI_LINT_VERSION)."; \
Expand Down
2 changes: 1 addition & 1 deletion run.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ func (r *Run) request(ctx context.Context, payload any) (err error) {
r.callsLock.Unlock()
} else if event.Run.Type == EventTypeRunFinish && event.Run.Error != "" {
r.state = Error
r.err = fmt.Errorf(event.Run.Error)
r.err = fmt.Errorf("%s", event.Run.Error)
}
}

Expand Down

0 comments on commit 1dd8124

Please sign in to comment.