Skip to content

Commit be6b996

Browse files
authored
chore(deps): bump ImageUpdater from 1.2.1 to 1.2.2; bump argocd from 3.4.2 to 3.4.4 (argoproj-labs#2255)
Signed-off-by: Cheng Fang <cfang@redhat.com>
1 parent 69eaeaf commit be6b996

8 files changed

Lines changed: 19 additions & 19 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ VERSION ?= 0.19.0
1010
# After updating, call 'make update-dependencies'.
1111
# Notes:
1212
# - String should NOT begin with 'v' prefix, e.g. 'v3.1.1'
13-
ARGO_CD_TARGET_VERSION ?= 3.4.2
13+
ARGO_CD_TARGET_VERSION ?= 3.4.4
1414

1515
# Try to detect Docker or Podman
1616
CONTAINER_RUNTIME := $(shell command -v docker 2> /dev/null || command -v podman 2> /dev/null)

build/util/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Argo CD v3.4.2
2-
FROM quay.io/argoproj/argocd@sha256:c612d570cb6d6ff29afb72932c1bfe98a1ecc234df50f8ea4873fb7066e760fc AS argocd
1+
# Argo CD v3.4.4
2+
FROM quay.io/argoproj/argocd@sha256:2fb3efa9eaa42382acb39c9a1485eaac7a1ad7a09e8aa7da7143ca256fa6da09 AS argocd
33

44
# Final Image
55
FROM docker.io/library/ubuntu:26.04

bundle/manifests/argocd-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ metadata:
257257
capabilities: Deep Insights
258258
categories: Integration & Delivery
259259
certified: "false"
260-
createdAt: "2026-05-29T09:49:36Z"
260+
createdAt: "2026-06-25T20:08:14Z"
261261
description: Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.
262262
operators.operatorframework.io/builder: operator-sdk-v1.35.0
263263
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4

common/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const (
7070
ArgoCDDefaultArgoImage = "quay.io/argoproj/argocd"
7171

7272
// ArgoCDDefaultArgoVersion is the Argo CD container image digest to use when version not specified.
73-
ArgoCDDefaultArgoVersion = "sha256:c612d570cb6d6ff29afb72932c1bfe98a1ecc234df50f8ea4873fb7066e760fc" // v3.4.2
73+
ArgoCDDefaultArgoVersion = "sha256:2fb3efa9eaa42382acb39c9a1485eaac7a1ad7a09e8aa7da7143ca256fa6da09" // v3.4.4
7474

7575
// ArgoCDDefaultBackupKeyLength is the length of the generated default backup key.
7676
ArgoCDDefaultBackupKeyLength = 32

controllers/argocd/image_updater.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424

2525
const (
2626
DefaultImageUpdaterImage = "quay.io/argoprojlabs/argocd-image-updater"
27-
DefaultImageUpdaterTag = "v1.2.1"
27+
DefaultImageUpdaterTag = "v1.2.2"
2828
ArgocdImageUpdaterConfigCM = "argocd-image-updater-config"
2929
ArgocdImageUpdaterSSHConfigCM = "argocd-image-updater-ssh-config"
3030
ArgocdImageUpdaterSecret = "argocd-image-updater-secret" // #nosec G101

deploy/olm-catalog/argocd-operator/0.19.0/argocd-operator.v0.19.0.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ metadata:
257257
capabilities: Deep Insights
258258
categories: Integration & Delivery
259259
certified: "false"
260-
createdAt: "2026-05-29T09:49:36Z"
260+
createdAt: "2026-06-25T20:08:14Z"
261261
description: Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.
262262
operators.operatorframework.io/builder: operator-sdk-v1.35.0
263263
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26.0
55
require (
66
github.com/argoproj/argo-cd/gitops-engine v0.7.1-0.20250908182407-97ad5b59a627
77
// Update in Makefile and run `make update-dependencies`
8-
github.com/argoproj/argo-cd/v3 v3.4.2
8+
github.com/argoproj/argo-cd/v3 v3.4.4
99
github.com/cert-manager/cert-manager v1.20.2
1010
github.com/go-logr/logr v1.4.3
1111
github.com/google/go-cmp v0.7.0
@@ -70,7 +70,7 @@ require (
7070
)
7171

7272
require (
73-
github.com/argoproj-labs/argocd-image-updater v1.2.1
73+
github.com/argoproj-labs/argocd-image-updater v1.2.2
7474
go.yaml.in/yaml/v2 v2.4.3 // indirect
7575
go.yaml.in/yaml/v3 v3.0.4 // indirect
7676
)
@@ -214,11 +214,11 @@ require (
214214
)
215215

216216
replace (
217-
// v3.4.2 declares gitops-engine at a pseudo-version where go.mod
217+
// v3.4.4 declares gitops-engine at a pseudo-version where go.mod
218218
// didn't exist yet, then overrides with replace => ./gitops-engine locally.
219-
// Downstream consumers must resolve it themselves; pin to the v3.4.2 commit.
220-
github.com/argoproj/argo-cd/gitops-engine => github.com/argoproj/argo-cd/gitops-engine v0.0.0-20260512203152-0dc6b1b57dd5
221-
// This replace block is from Argo CD v3.4.2 go.mod
219+
// Downstream consumers must resolve it themselves; pin to the v3.4.4 commit.
220+
github.com/argoproj/argo-cd/gitops-engine => github.com/argoproj/argo-cd/gitops-engine v0.0.0-20260618084203-443415b5527a
221+
// This replace block is from Argo CD v3.4.4 go.mod
222222
github.com/golang/protobuf => github.com/golang/protobuf v1.5.4
223223
github.com/grpc-ecosystem/grpc-gateway => github.com/grpc-ecosystem/grpc-gateway v1.16.0
224224
golang.org/x/tools => golang.org/x/tools v0.35.0

go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuW
3939
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
4040
github.com/antlr4-go/antlr/v4 v4.13.1 h1:SqQKkuVZ+zWkMMNkjy5FZe5mr5WURWnlpmOuzYWrPrQ=
4141
github.com/antlr4-go/antlr/v4 v4.13.1/go.mod h1:GKmUxMtwp6ZgGwZSva4eWPC5mS6vUAmOABFgjdkM7Nw=
42-
github.com/argoproj-labs/argocd-image-updater v1.2.1 h1:yaJdmpFOOKTkC9688/a7jjOBLpCREj7Wdnmn4A3v1nU=
43-
github.com/argoproj-labs/argocd-image-updater v1.2.1/go.mod h1:sBS1JqoM9R0QhIDVD4bdWS/GejDQaFwdFUV+yE9TzjA=
44-
github.com/argoproj/argo-cd/gitops-engine v0.0.0-20260512203152-0dc6b1b57dd5 h1:IMzPK0gt1lZRDHtiKGzU0VAez0FmT2veytxlmE2AwyU=
45-
github.com/argoproj/argo-cd/gitops-engine v0.0.0-20260512203152-0dc6b1b57dd5/go.mod h1:6Q1KZzkeKlnCpzzZ1Fu72+WPMAt+ZeMD9KOO6aMjW68=
46-
github.com/argoproj/argo-cd/v3 v3.4.2 h1:S3j0K34uGW4geWiM88+0cHcCEtInn2Sa9U7/Sa18L7Y=
47-
github.com/argoproj/argo-cd/v3 v3.4.2/go.mod h1:fWDp6ko+Pug6pCEmhZxd35V/Pd9QJgYhky3pJNnsuKE=
42+
github.com/argoproj-labs/argocd-image-updater v1.2.2 h1:5g7OJclZG03gQrbF5rbKlKdK0sL9CzS9tv4e8ljO7cs=
43+
github.com/argoproj-labs/argocd-image-updater v1.2.2/go.mod h1:QZni7rexzlsmYa5hGu2+iWV42igUpJ0hfLP3+36ulVY=
44+
github.com/argoproj/argo-cd/gitops-engine v0.0.0-20260618084203-443415b5527a h1:SJc7T9iblzEkvl9Ori/OZL6gZgDFxMnC5icqGg0rvWc=
45+
github.com/argoproj/argo-cd/gitops-engine v0.0.0-20260618084203-443415b5527a/go.mod h1:6Q1KZzkeKlnCpzzZ1Fu72+WPMAt+ZeMD9KOO6aMjW68=
46+
github.com/argoproj/argo-cd/v3 v3.4.4 h1:PmYfvrLRecuOXjoUjBVx0nRwtJv/Wc9a3jaWs37EyyI=
47+
github.com/argoproj/argo-cd/v3 v3.4.4/go.mod h1:fWDp6ko+Pug6pCEmhZxd35V/Pd9QJgYhky3pJNnsuKE=
4848
github.com/argoproj/pkg v0.13.7-0.20250305113207-cbc37dc61de5 h1:YBoLSjpoaJXaXAldVvBRKJuOPvIXz9UOv6S96gMJM/Q=
4949
github.com/argoproj/pkg v0.13.7-0.20250305113207-cbc37dc61de5/go.mod h1:ebVOzFJphdN1p6EG2mIMECv/3Rk/almSaxIYuFAmsSw=
5050
github.com/argoproj/pkg/v2 v2.0.1 h1:O/gCETzB/3+/hyFL/7d/VM/6pSOIRWIiBOTb2xqAHvc=

0 commit comments

Comments
 (0)