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
2 changes: 1 addition & 1 deletion reference-converter/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/nginxinc/nginx-directive-reference/reference-converter

go 1.23
go 1.24

require (
github.com/gomarkdown/markdown v0.0.0-20241205020045-f7e15b2f3e62
Expand Down
4 changes: 2 additions & 2 deletions tools/devtools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ARG GO_VERSION=1.23
ARG GO_VERSION=1.24
ARG NODE_VERSION=18
ARG BASE_IMG=docker.io/library/node:${NODE_VERSION}-bullseye

FROM docker.io/library/golang:${GO_VERSION}-bullseye AS golang
ARG GO_JUNIT_REPORT_VERSION=latest
ARG GOPLS_VERSION=latest
ARG DELVE_VERSION=latest
ARG GOLANGCI_LINT_VERSION=1.62.2
ARG GOLANGCI_LINT_VERSION=1.64.8

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