Skip to content

Commit 39e8b2e

Browse files
authored
bump golang to 1.24 (#429)
The build is failing because the latest `gopls` requires 1.24 or above. Considered pinning `gopls`, but figured we need to upgrade Go anyway. fixes #425
1 parent 763bc55 commit 39e8b2e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

reference-converter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nginxinc/nginx-directive-reference/reference-converter
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/gomarkdown/markdown v0.0.0-20241205020045-f7e15b2f3e62

tools/devtools/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
ARG GO_VERSION=1.23
1+
ARG GO_VERSION=1.24
22
ARG NODE_VERSION=18
33
ARG BASE_IMG=docker.io/library/node:${NODE_VERSION}-bullseye
44

55
FROM docker.io/library/golang:${GO_VERSION}-bullseye AS golang
66
ARG GO_JUNIT_REPORT_VERSION=latest
77
ARG GOPLS_VERSION=latest
88
ARG DELVE_VERSION=latest
9-
ARG GOLANGCI_LINT_VERSION=1.62.2
9+
ARG GOLANGCI_LINT_VERSION=1.64.8
1010

1111
RUN go install github.com/jstemmer/go-junit-report/v2@${GO_JUNIT_REPORT_VERSION} \
1212
&& go install -v golang.org/x/tools/gopls@${GOPLS_VERSION} \

0 commit comments

Comments
 (0)