Skip to content

Commit c98910f

Browse files
committed
Fix Build
1 parent debd1cb commit c98910f

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

.github/workflows/pr-tests.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ jobs:
4545
steps:
4646
- name: Checkout latest commit in the PR
4747
uses: actions/checkout@v3
48+
- name: Set up Go
49+
uses: actions/setup-go@v4
50+
with:
51+
go-version-file: go.mod
52+
check-latest: true
53+
cache-dependency-path: "**/go.sum"
4854
- name: Set up QEMU
4955
uses: docker/setup-qemu-action@v2
5056
- name: Set up Docker Buildx

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ MOCKGEN ?= $(LOCALBIN)/mockgen
144144

145145
## Tool Versions
146146
KUSTOMIZE_VERSION ?= v5.4.3
147-
CONTROLLER_TOOLS_VERSION ?= v0.16.3
147+
CONTROLLER_TOOLS_VERSION ?= v0.17.0
148148

149149
KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
150150
.PHONY: kustomize
@@ -181,6 +181,7 @@ GO_IMAGE_TAG=$(shell cat .go-version)
181181
BUILD_IMAGE ?= public.ecr.aws/docker/library/golang:$(GO_IMAGE_TAG)
182182
BASE_IMAGE ?= public.ecr.aws/eks-distro-build-tooling/eks-distro-minimal-base-nonroot:latest.2
183183
GO_RUNNER_IMAGE ?= public.ecr.aws/eks-distro/kubernetes/go-runner:v0.18.0-eks-1-32-latest
184+
184185
.PHONY: docker-buildx
185186
docker-buildx: prepare-embed test
186187
for platform in $(ARCHS); do \

config/crd/bases/networking.k8s.aws_policyendpoints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.3
6+
controller-gen.kubebuilder.io/version: v0.17.0
77
name: policyendpoints.networking.k8s.aws
88
spec:
99
group: networking.k8s.aws

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ require (
6262
golang.org/x/term v0.30.0 // indirect
6363
golang.org/x/text v0.23.0 // indirect
6464
golang.org/x/time v0.7.0 // indirect
65-
golang.org/x/tools v0.28.0 // indirect
65+
golang.org/x/tools v0.29.0 // indirect
6666
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
6767
google.golang.org/protobuf v1.36.1 // indirect
6868
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtn
161161
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
162162
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
163163
golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
164-
golang.org/x/tools v0.28.0 h1:WuB6qZ4RPCQo5aP3WdKZS7i595EdWqWR8vqJTlwTVK8=
165-
golang.org/x/tools v0.28.0/go.mod h1:dcIOrVd3mfQKTgrDVQHqCPMWy6lnhfhtX3hLXYVLfRw=
164+
golang.org/x/tools v0.29.0 h1:Xx0h3TtM9rzQpQuR4dKLrdglAmCEN5Oi+P74JdhdzXE=
165+
golang.org/x/tools v0.29.0/go.mod h1:KMQVMRsVxU6nHCFXrBPhDB8XncLNLM0lIy/F14RP588=
166166
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
167167
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
168168
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=

0 commit comments

Comments
 (0)