From d94705d4d29fcb0e1edb202607ef6214b4f95358 Mon Sep 17 00:00:00 2001 From: Craig Ingram Date: Fri, 9 Feb 2024 15:18:38 -0500 Subject: [PATCH] Updated dependencies --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e0d4cd..dcf3f86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v4 with: - go-version: '1.20' + go-version: '1.21' - run: go version diff --git a/Dockerfile b/Dockerfile index ecd774b..cce1104 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.20 as builder +FROM golang:1.21 as builder ARG TARGETARCH ARG TARGETOS diff --git a/Makefile b/Makefile index e51b6da..6888df6 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ VERSION := latest CRD_OPTIONS ?= "crd:trivialVersions=true,preserveUnknownFields=false" KIND_CLUSTER_NAME ?= "gatling-cluster" K8S_NODE_IMAGE ?= v1.25.8 -KUSTOMIZE_VERSION ?= v5.1.1 +KUSTOMIZE_VERSION ?= v5.3.0 # Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set) ifeq (,$(shell go env GOBIN))