From edd1f994cbfc15b096f0bf0a8f7bdb7a6dc4305b Mon Sep 17 00:00:00 2001 From: Michael Martin Date: Mon, 24 Jul 2023 16:42:30 -0700 Subject: [PATCH] fix(build): use the correct checksum for nfpm arm64 This updates one of the checksums for nfpm: https://github.com/goreleaser/nfpm/releases/download/v2.31.0/checksums.txt The 0e711d33[...] checksum is actually for the .sbom file and not the tarball, causing bazel to report this error: > Checksum was e6487dca9d9e9b1781fe7fa0a3d844e70cf12d92f3b5fc0c4ff771aa776b05ca but wanted 0e711d333d7673462f0afff8a57d4c09a215b3d20d989b5e4271f6622f325ded --- build/nfpm/repositories.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/nfpm/repositories.bzl b/build/nfpm/repositories.bzl index a3930c622591..b865a6e89bd6 100644 --- a/build/nfpm/repositories.bzl +++ b/build/nfpm/repositories.bzl @@ -37,7 +37,7 @@ nfpm_release_select = repository_rule( def nfpm_repositories(): npfm_matrix = [ ["linux", "x86_64", "6dd3b07d4d6ee373baea5b5fca179ebf78dec38c9a55392bae34040e596e4de7"], - ["linux", "arm64", "0e711d333d7673462f0afff8a57d4c09a215b3d20d989b5e4271f6622f325ded"], + ["linux", "arm64", "e6487dca9d9e9b1781fe7fa0a3d844e70cf12d92f3b5fc0c4ff771aa776b05ca"], ["Darwin", "x86_64", "19954ef8e6bfa0607efccd0a97452b6d571830665bd76a2f9957413f93f9d8cd"], ["Darwin", "arm64", "9fd82cda017cdfd49b010199a2eed966d0a645734d9a6bf932c4ef82c8c12c96"], ]