From 7f18689d6113e089ffcea731980770460c1918f8 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Wed, 16 Aug 2023 16:21:57 +0200 Subject: [PATCH] Bump default git clone plugin (#2215) (#2220) Backport #2215 - and add alternate quay registry to trusted clone image - add alternate registry for buildx plugin --- shared/constant/constant.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shared/constant/constant.go b/shared/constant/constant.go index 1414cd4d14..3d46ee769b 100644 --- a/shared/constant/constant.go +++ b/shared/constant/constant.go @@ -20,6 +20,7 @@ var PrivilegedPlugins = []string{ "plugins/gcr", "plugins/ecr", "woodpeckerci/plugin-docker-buildx", + "codeberg.org/woodpecker-plugins/docker-buildx", } // DefaultConfigOrder represent the priority in witch woodpecker search for a pipeline config by default @@ -32,9 +33,10 @@ var DefaultConfigOrder = [...]string{ const ( // DefaultCloneImage can be changed by 'WOODPECKER_DEFAULT_CLONE_IMAGE' at runtime - DefaultCloneImage = "docker.io/woodpeckerci/plugin-git:2.0.3" + DefaultCloneImage = "docker.io/woodpeckerci/plugin-git:2.1.1" ) var TrustedCloneImages = []string{ DefaultCloneImage, + "quay.io/woodpeckerci/plugin-git", }