diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c49dbd8..599c86a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.base.schema.json", "name": "default", - "image": "golang:1.23-bookworm", + "image": "golang:1.24-bookworm", "features": { "ghcr.io/guiyomh/features/golangci-lint:0": {}, "ghcr.io/devcontainers/features/github-cli:1": {}, diff --git a/Dockerfile b/Dockerfile index 2ac2c87..871aa05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 # -✂- this stage is used to develop and build the application locally ------------------------------------------------- -FROM docker.io/library/golang:1.23-bookworm AS develop +FROM docker.io/library/golang:1.24-bookworm AS develop # use the /var/tmp/go as the GOPATH to reuse the modules cache ENV GOPATH="/var/tmp/go" diff --git a/go.mod b/go.mod index e038f93..06d2404 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module gh.tarampamp.am/error-pages -go 1.23 +go 1.24 require ( github.com/stretchr/testify v1.10.0