diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6d23cf8d9b..c025f0d2d8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ env: # /dev.Dockerfile # /make/builder.Dockerfile # /.github/workflows/release.yml - GO_VERSION: 1.21.0 + GO_VERSION: 1.22.3 jobs: ######################## diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e565611c54..4c4cc5d60f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,7 +16,7 @@ env: # /dev.Dockerfile # /make/builder.Dockerfile # /.github/workflows/main.yml - GO_VERSION: 1.21.0 + GO_VERSION: 1.22.3 jobs: main: diff --git a/Dockerfile b/Dockerfile index c35ed81bf9..d6e8a82c6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # /make/builder.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.21.0-alpine as builder +FROM golang:1.22.3-alpine as builder # Force Go to use the cgo based DNS resolver. This is required to ensure DNS # queries required to connect to linked containers succeed. diff --git a/dev.Dockerfile b/dev.Dockerfile index bb7c673127..624c1bc3a7 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -4,7 +4,7 @@ # /make/builder.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.21.0-alpine as builder +FROM golang:1.22.3-alpine as builder LABEL maintainer="Olaoluwa Osuntokun " diff --git a/make/builder.Dockerfile b/make/builder.Dockerfile index efa3d052af..66946e0a44 100644 --- a/make/builder.Dockerfile +++ b/make/builder.Dockerfile @@ -4,7 +4,7 @@ # /dev.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.21.0-bookworm +FROM golang:1.22.3-bookworm MAINTAINER Olaoluwa Osuntokun