about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/argocd
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-05-28 11:54:44 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2024-05-28 11:54:44 +0000
commit1fffe13b2fa3f9bbabf66d9e8528ad7e89303d50 (patch)
tree0fa0a313182fa83e788dc4ab318f83c4a2cc7bd4 /pkgs/applications/networking/cluster/argocd
parent1e1044aedc569c7eb63ae02990863482b48800d0 (diff)
argocd: 2.11.1 -> 2.11.2
Diffstat (limited to 'pkgs/applications/networking/cluster/argocd')
-rw-r--r--pkgs/applications/networking/cluster/argocd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/cluster/argocd/default.nix b/pkgs/applications/networking/cluster/argocd/default.nix
index fc26ce3d5ba8b..175bdfdcb90a0 100644
--- a/pkgs/applications/networking/cluster/argocd/default.nix
+++ b/pkgs/applications/networking/cluster/argocd/default.nix
@@ -2,17 +2,17 @@
 
 buildGoModule rec {
   pname = "argocd";
-  version = "2.11.1";
+  version = "2.11.2";
 
   src = fetchFromGitHub {
     owner = "argoproj";
     repo = "argo-cd";
     rev = "v${version}";
-    hash = "sha256-v3Y85e0I5CCL4+cT4O/VhKRIHKiw088XbqjuwZr0CeM=";
+    hash = "sha256-lePMdjWq4qFQcxFZzfLyTsMwgcmjIoBmosZs5G4CWvc=";
   };
 
   proxyVendor = true; # darwin/linux hash mismatch
-  vendorHash = "sha256-+YRLIQWInGCV2ORuABvM4cCjiMznENmAmE2jF9Eql6w=";
+  vendorHash = "sha256-atgNLlHoX+KBtJcYZNqNsYBK0cVGI/k2mXvmcr6wWN4=";
 
   # Set target as ./cmd per cli-local
   # https://github.com/argoproj/argo-cd/blob/master/Makefile#L227