From 622a37d16c72a974502240b1df3f760569dcb206 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Fri, 22 Nov 2024 17:39:28 +0100 Subject: [PATCH] multi: bump Golang version to fix Docker build --- .github/workflows/main.yml | 2 +- Dockerfile | 2 +- tools/go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 884657d..3a0c59a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,7 @@ env: # https://github.com/golang/go/issues/51799). There was a race condition # introduced with go 1.16.10 that causes the unit tests to fail (could also # happen in production). - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.6 jobs: ######################## diff --git a/Dockerfile b/Dockerfile index 45e8422..27546f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.3-alpine as builder +FROM golang:1.22.6-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/tools/go.mod b/tools/go.mod index 210eb8f..8acf347 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -2,7 +2,7 @@ module github.com/lightninglabs/aperture/tools go 1.22 -toolchain go1.22.3 +toolchain go1.22.6 require ( github.com/golangci/golangci-lint v1.55.2