1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #43746 from thaJeztah/bump_go_1.19

update to golang 1.19.1
This commit is contained in:
Sebastiaan van Stijn 2022-09-07 22:44:45 +02:00 committed by GitHub
commit a0a16bbed6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 21 additions and 20 deletions

View file

@ -13,7 +13,7 @@ on:
default: false default: false
env: env:
GO_VERSION: 1.18.6 GO_VERSION: 1.19.1
GOTESTLIST_VERSION: v0.2.0 GOTESTLIST_VERSION: v0.2.0
TESTSTAT_VERSION: v0.1.3 TESTSTAT_VERSION: v0.1.3
WINDOWS_BASE_IMAGE: mcr.microsoft.com/windows/servercore WINDOWS_BASE_IMAGE: mcr.microsoft.com/windows/servercore

View file

@ -2,7 +2,7 @@
ARG CROSS="false" ARG CROSS="false"
ARG SYSTEMD="false" ARG SYSTEMD="false"
ARG GO_VERSION=1.18.6 ARG GO_VERSION=1.19.1
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
ARG VPNKIT_VERSION=0.5.0 ARG VPNKIT_VERSION=0.5.0

View file

@ -1,4 +1,4 @@
ARG GO_VERSION=1.18.6 ARG GO_VERSION=1.19.1
FROM golang:${GO_VERSION}-alpine AS base FROM golang:${GO_VERSION}-alpine AS base
ENV GO111MODULE=off ENV GO111MODULE=off

View file

@ -5,7 +5,7 @@
# This represents the bare minimum required to build and test Docker. # This represents the bare minimum required to build and test Docker.
ARG GO_VERSION=1.18.6 ARG GO_VERSION=1.19.1
ARG BASE_DEBIAN_DISTRO="bullseye" ARG BASE_DEBIAN_DISTRO="bullseye"
ARG GOLANG_IMAGE="golang:${GO_VERSION}-${BASE_DEBIAN_DISTRO}" ARG GOLANG_IMAGE="golang:${GO_VERSION}-${BASE_DEBIAN_DISTRO}"

View file

@ -165,10 +165,10 @@ FROM microsoft/windowsservercore
# Use PowerShell as the default shell # Use PowerShell as the default shell
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
ARG GO_VERSION=1.18.6 ARG GO_VERSION=1.19.1
ARG CONTAINERD_VERSION=v1.6.8
ARG GOTESTSUM_VERSION=v1.8.1 ARG GOTESTSUM_VERSION=v1.8.1
ARG GOWINRES_VERSION=v0.2.3 ARG GOWINRES_VERSION=v0.2.3
ARG CONTAINERD_VERSION=v1.6.8
# Environment variable notes: # Environment variable notes:
# - GO_VERSION must be consistent with 'Dockerfile' used by Linux. # - GO_VERSION must be consistent with 'Dockerfile' used by Linux.

View file

@ -63,6 +63,7 @@ func (cp namespacedContent) Info(ctx context.Context, dgst digest.Digest) (conte
// If one or more fieldpaths are provided, only those // If one or more fieldpaths are provided, only those
// fields will be updated. // fields will be updated.
// Mutable fields: // Mutable fields:
//
// labels.* // labels.*
func (cp namespacedContent) Update(ctx context.Context, info content.Info, fieldpaths ...string) (content.Info, error) { func (cp namespacedContent) Update(ctx context.Context, info content.Info, fieldpaths ...string) (content.Info, error) {
return cp.provider.Update(withDefaultNamespace(ctx, cp.ns), info, fieldpaths...) return cp.provider.Update(withDefaultNamespace(ctx, cp.ns), info, fieldpaths...)