upgrade go 1.21.5

Signed-off-by: James Strong <strong.james.e@gmail.com>
This commit is contained in:
James Strong 2023-12-06 14:16:25 -05:00
parent 6152695c78
commit c7ac547577
17 changed files with 21 additions and 21 deletions

View file

@ -75,7 +75,7 @@ jobs:
id: go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '1.21.3'
go-version: '1.21.5'
check-latest: true
- name: Run test
@ -96,7 +96,7 @@ jobs:
id: go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '1.21.3'
go-version: '1.21.5'
check-latest: true
- name: Set up QEMU
@ -160,7 +160,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '1.21.3'
go-version: '1.21.5'
check-latest: true
- name: Install Helm Unit Test Plugin
@ -510,7 +510,7 @@ jobs:
if: ${{ steps.filter-images.outputs.kube-webhook-certgen == 'true' }}
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '1.21.3'
go-version: '1.21.5'
check-latest: true
- name: kube-webhook-certgen image build

View file

@ -25,7 +25,7 @@ jobs:
id: go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '1.21.3'
go-version: '1.21.5'
check-latest: true
- name: golangci-lint

View file

@ -22,7 +22,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '1.21.3'
go-version: '1.21.5'
check-latest: true
- name: Run GoReleaser

2
go.mod
View file

@ -1,6 +1,6 @@
module k8s.io/ingress-nginx
go 1.21.3
go 1.21.5
require (
dario.cat/mergo v1.0.0

View file

@ -1,4 +1,4 @@
go 1.21.3
go 1.21.5
use (
.

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM golang:1.21.3-alpine3.18 as builder
FROM golang:1.21.5-alpine3.18 as builder
RUN apk update \
&& apk upgrade && apk add git

View file

@ -1,6 +1,6 @@
module k8s.io/ingress-nginx/custom-error-pages
go 1.21.3
go 1.21.5
require github.com/prometheus/client_golang v1.11.1

View file

@ -1,4 +1,4 @@
FROM golang:1.21.3-alpine3.18 as builder
FROM golang:1.21.5-alpine3.18 as builder
RUN mkdir /authsvc
WORKDIR /authsvc
COPY . ./

View file

@ -1,6 +1,6 @@
module example.com/authsvc
go 1.21.3
go 1.21.5
require k8s.io/apimachinery v0.23.1

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM golang:1.21.3-alpine3.18 as builder
FROM golang:1.21.5-alpine3.18 as builder
WORKDIR /go/src/k8s.io/ingress-nginx/images/fastcgi

View file

@ -1,4 +1,4 @@
FROM golang:1.21.3-alpine3.18 as build
FROM golang:1.21.5-alpine3.18 as build
WORKDIR /go/src/greeter-server

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM golang:1.21.3 AS builder
FROM golang:1.21.5 AS builder
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM --platform=$BUILDPLATFORM golang:1.21.3 as builder
FROM --platform=$BUILDPLATFORM golang:1.21.5 as builder
ARG BUILDPLATFORM
ARG TARGETARCH

View file

@ -1,6 +1,6 @@
module github.com/jet/kube-webhook-certgen
go 1.21.3
go 1.21.5
require (
github.com/onrik/logrus v0.9.0

View file

@ -1,3 +1,3 @@
module init-otel
go 1.21.3
go 1.21.5

View file

@ -43,7 +43,7 @@ image:
--pull \
--push \
--build-arg BASE_IMAGE=${NGINX_BASE_IMAGE} \
--build-arg GOLANG_VERSION=1.21.3 \
--build-arg GOLANG_VERSION=1.21.5 \
--build-arg ETCD_VERSION=3.4.3-0 \
--build-arg K8S_RELEASE=v1.26.0 \
--build-arg RESTY_CLI_VERSION=0.27 \
@ -64,7 +64,7 @@ build: ensure-buildx
--progress=${PROGRESS} \
--pull \
--build-arg BASE_IMAGE=${NGINX_BASE_IMAGE} \
--build-arg GOLANG_VERSION=1.21.3 \
--build-arg GOLANG_VERSION=1.21.5 \
--build-arg ETCD_VERSION=3.4.3-0 \
--build-arg K8S_RELEASE=v1.26.0 \
--build-arg RESTY_CLI_VERSION=0.27 \

View file

@ -1,6 +1,6 @@
module k8s.io/ingress-nginx/magefiles
go 1.21.3
go 1.21.5
require (
github.com/blang/semver/v4 v4.0.0