about summary refs log tree commit diff
path: root/pkgs/tools/security/scorecard
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2021-12-06 21:47:12 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2021-12-06 21:47:12 +0000
commitd4564ea49845ff442bfd0c490b4c9711be266226 (patch)
tree87b2b009730837a6768451b13cee9e19ab10f609 /pkgs/tools/security/scorecard
parent237adfc14ee0dba5b109f898df331254f963141a (diff)
scorecard: 3.0.1 -> 3.2.1
Diffstat (limited to 'pkgs/tools/security/scorecard')
-rw-r--r--pkgs/tools/security/scorecard/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/scorecard/default.nix b/pkgs/tools/security/scorecard/default.nix
index 0cc94c63c9f00..e08ff55bc18b2 100644
--- a/pkgs/tools/security/scorecard/default.nix
+++ b/pkgs/tools/security/scorecard/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "scorecard";
-  version = "3.0.1";
+  version = "3.2.1";
 
   src = fetchFromGitHub {
     owner = "ossf";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-19XDAgv9ARCZ7eNlWUPcsbGNyKA9vYFry8m6D3+vQP8=";
+    sha256 = "sha256-MVFhw/r1sws82oofV4LHmiSlKxyYd8abYq8oFiB0HH8=";
     # populate values otherwise taken care of by goreleaser,
     # unfortunately these require us to use git. By doing
     # this in postFetch we can delete .git afterwards and
@@ -27,7 +27,7 @@ buildGoModule rec {
       find "$out" -name .git -print0 | xargs -0 rm -rf
     '';
   };
-  vendorSha256 = "sha256-ucF26pTEvG8tkzsyC9WNbvl8QCeetKBvBIcQL2NTfjo=";
+  vendorSha256 = "sha256-WrM2aE0z6SnfoPEBqgn1TO6sSGPMrQvL6+ddvOS2w1k=";
 
   # Install completions post-install
   nativeBuildInputs = [ installShellFiles ];