summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiaan van Stijn <thaJeztah@users.noreply.github.com>2023-04-06 01:48:49 +0200
committerGitHub <noreply@github.com>2023-04-06 01:48:49 +0200
commit4ca4705bf777c5c9e432f9a5d7d2926a37788a69 (patch)
treeb4b74f64eddc03859277e1016c6362a663562177
parent347bce43e90d8571e63b507db568cdeb14c01b1f (diff)
parentd3e52936c3da962a9bd5ecec242130d5790ee88e (diff)
downloaddocker-4ca4705bf777c5c9e432f9a5d7d2926a37788a69.tar.gz
Merge pull request #45277 from thaJeztah/23.0_bump_go1.19.8
[23.0] update go to go1.19.8
-rw-r--r--.github/workflows/.windows.yml2
-rw-r--r--.github/workflows/test.yml2
-rw-r--r--Dockerfile2
-rw-r--r--Dockerfile.e2e2
-rw-r--r--Dockerfile.simple2
-rw-r--r--Dockerfile.windows2
6 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/.windows.yml b/.github/workflows/.windows.yml
index cb94fb6931..2942f56ef2 100644
--- a/.github/workflows/.windows.yml
+++ b/.github/workflows/.windows.yml
@@ -15,7 +15,7 @@ on:
default: false
env:
- GO_VERSION: 1.19.7
+ GO_VERSION: 1.19.8
GOTESTLIST_VERSION: v0.3.1
TESTSTAT_VERSION: v0.1.3
WINDOWS_BASE_IMAGE: mcr.microsoft.com/windows/servercore
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index d655ea48b1..c22bf3bc4c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -15,7 +15,7 @@ on:
pull_request:
env:
- GO_VERSION: 1.19.7
+ GO_VERSION: 1.19.8
GOTESTLIST_VERSION: v0.3.1
TESTSTAT_VERSION: v0.1.3
ITG_CLI_MATRIX_SIZE: 6
diff --git a/Dockerfile b/Dockerfile
index d9b938881f..daf4c04ffe 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
-ARG GO_VERSION=1.19.7
+ARG GO_VERSION=1.19.8
ARG BASE_DEBIAN_DISTRO="bullseye"
ARG GOLANG_IMAGE="golang:${GO_VERSION}-${BASE_DEBIAN_DISTRO}"
ARG XX_VERSION=1.1.2
diff --git a/Dockerfile.e2e b/Dockerfile.e2e
index 06a0dd3fa5..2e241bf7d4 100644
--- a/Dockerfile.e2e
+++ b/Dockerfile.e2e
@@ -1,4 +1,4 @@
-ARG GO_VERSION=1.19.7
+ARG GO_VERSION=1.19.8
FROM golang:${GO_VERSION}-alpine AS base
ENV GO111MODULE=off
diff --git a/Dockerfile.simple b/Dockerfile.simple
index 2ff28b727b..d9a77f4e52 100644
--- a/Dockerfile.simple
+++ b/Dockerfile.simple
@@ -5,7 +5,7 @@
# This represents the bare minimum required to build and test Docker.
-ARG GO_VERSION=1.19.7
+ARG GO_VERSION=1.19.8
ARG BASE_DEBIAN_DISTRO="bullseye"
ARG GOLANG_IMAGE="golang:${GO_VERSION}-${BASE_DEBIAN_DISTRO}"
diff --git a/Dockerfile.windows b/Dockerfile.windows
index 70cd7ef0ab..59355b0ad3 100644
--- a/Dockerfile.windows
+++ b/Dockerfile.windows
@@ -165,7 +165,7 @@ FROM microsoft/windowsservercore
# Use PowerShell as the default shell
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
-ARG GO_VERSION=1.19.7
+ARG GO_VERSION=1.19.8
ARG GOTESTSUM_VERSION=v1.8.2
ARG GOWINRES_VERSION=v0.3.0
ARG CONTAINERD_VERSION=v1.6.20