diff --git a/Dockerfile b/Dockerfile index 1fc66e57..d00544e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # BASE # ######## ARG DEBIAN_VERSION="bookworm" -ARG GO_VERSION="1.22" +ARG GO_VERSION="1.23" ARG NODE_VERSION="22" ARG ALPINE_VERSION="3.21" FROM golang:${GO_VERSION}-${DEBIAN_VERSION} AS go_builder diff --git a/README.md b/README.md index 6ddd552d..5fd70c1a 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ Usage of /usr/local/bin/argus: The backend of Argus is built with [Go](https://go.dev/), and the frontend with [React](https://reactjs.org/). The React frontend is built and then [embedded](https://pkg.go.dev/embed) into the Go binary so that those web files can be served. -- [Go 1.22+](https://go.dev/dl/) +- [Go 1.23+](https://go.dev/dl/) - [NodeJS 22](https://nodejs.org/en/download/) ### Go changes diff --git a/go.mod b/go.mod index fc6334ff..cc60895c 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/release-argus/Argus -go 1.22 +go 1.23 -toolchain go1.22.0 +toolchain go1.23.0 require ( github.com/Masterminds/semver/v3 v3.3.1