Skip to content

Commit

Permalink
fix(deps): bump supported Go versions to 1.23.0 and 1.22.6 (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 14, 2024
1 parent f4b9e29 commit 5a73895
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/variables/go-versions.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
latest=1.22.6
penultimate=1.21.13
latest=1.23.0
penultimate=1.22.6
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# This is a standalone Dockerfile that does not depend on goreleaser building the binary
# It is NOT the version that is pushed to dockerhub
FROM golang:1.22.6-alpine3.20 as builder
FROM golang:1.23.0-alpine3.20 as builder
# See "Runtime platform versions" in CONTRIBUTING.md

RUN apk --no-cache add \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

GOLANGCI_LINT_VERSION=v1.55.2
GOLANGCI_LINT_VERSION=v1.60.1

LINTER=./bin/golangci-lint
LINTER_VERSION_FILE=./bin/.golangci-lint-version-$(GOLANGCI_LINT_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion integrationtests/oshelpers/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ func (c *CommandWrapper) initCommand() *exec.Cmd {
}
cmd := exec.Command(c.command, c.args...) //nolint:gosec
cmd.Dir = path
cmd.Stderr = NewLineParsingWriter(func(line string) { fmt.Fprintf(c.outputWriter, "stderr >>> %s\n", line) })
cmd.Stderr = NewLineParsingWriter(func(line string) { _, _ = fmt.Fprintf(c.outputWriter, "stderr >>> %s\n", line) })
return cmd
}

0 comments on commit 5a73895

Please sign in to comment.