Skip to content

Commit 44afb1a

Browse files
authored
Merge pull request #1835 from turkenf/fix-cve-11.08
Update go version to 1.24.6 [Security]
2 parents 720dd7c + 0ee952a commit 44afb1a

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,15 @@ build-provider.%:
287287
XPKG_SKIP_DEP_RESOLUTION := true
288288

289289
local-deploy.%: controlplane.up
290+
# uptest workaround for the behavior change at Crossplane 1.15 default registry
291+
# XP RBAC manager has a check for packages from the same provider family
292+
# that they come from the same org and assign RBACs for all providers.
293+
# This got broken for locally deployed dev packages through crossplane/build submodule,
294+
# therefore cannot get necessary RBACs.
295+
# TODO: Remove this when https://github.com/crossplane/build/issues/38 is resolved
296+
# this workaround is only valid for uptest on Crossplane 1.x
297+
# Crossplane v2 needs the above issue to be resolved
298+
@$(KUBECTL) -n $(CROSSPLANE_NAMESPACE) patch deployment crossplane-rbac-manager -p '{"spec":{"template":{"spec":{"containers":[{"name":"crossplane","env":[{"name":"REGISTRY","value":"index.docker.io"}]}]}}}}'
290299
@for api in $$(tr ',' ' ' <<< $*); do \
291300
$(MAKE) local.xpkg.deploy.provider.$(PROJECT_NAME)-$${api}; \
292301
$(INFO) running locally built $(PROJECT_NAME)-$${api}; \

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module github.com/upbound/provider-aws
66

7-
go 1.24.4
7+
go 1.24.6
88

99
require (
1010
dario.cat/mergo v1.0.2

0 commit comments

Comments
 (0)