From 9e2b308f9395a558b71017e763ca537db0a2b167 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 24 Jul 2024 14:20:03 -0700 Subject: [PATCH] build: update to Go 1.22.5 --- .github/workflows/main.yml | 2 +- .github/workflows/release.yaml | 2 +- Dockerfile | 2 +- dev.Dockerfile | 2 +- make/builder.Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7a5038455..2dc0ad163 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,7 @@ env: # /dev.Dockerfile # /make/builder.Dockerfile # /.github/workflows/release.yml - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.5 jobs: ######################## diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index af78e5d64..702734cf8 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.22.3 + GO_VERSION: 1.22.5 jobs: main: diff --git a/Dockerfile b/Dockerfile index d6e8a82c6..d15c079ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # /make/builder.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.22.3-alpine as builder +FROM golang:1.22.5-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 624c1bc3a..61847b985 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.22.3-alpine as builder +FROM golang:1.22.5-alpine as builder LABEL maintainer="Olaoluwa Osuntokun " diff --git a/make/builder.Dockerfile b/make/builder.Dockerfile index 66946e0a4..1c1c17d28 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.22.3-bookworm +FROM golang:1.22.5-bookworm MAINTAINER Olaoluwa Osuntokun