From 89f0dad01686a382ce6ac9da3172289566cc5860 Mon Sep 17 00:00:00 2001 From: Gary Verhaegen Date: Mon, 23 Jan 2023 11:48:04 +0100 Subject: [PATCH] cron: fix sgnature key (#16115) I _believe_ this is what has been tripping up the check-releses job for the past few days: while updating the signing key, I did not update the key fingerprint to match, and therefore trying to check any signature fails. The failure mode of the existing script is still pretty bad, regadless: looping on the same release until the hard drive is full is definitely not expected. Our retry policies are supposed to have time bounds, and failure should result in cleaning up the workdir. run-full-compat: true --- ci/bash-lib.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/bash-lib.yml b/ci/bash-lib.yml index 2d646914c2..c9370977c0 100644 --- a/ci/bash-lib.yml +++ b/ci/bash-lib.yml @@ -210,7 +210,7 @@ steps: PUB_KEY gpg_dir=$(mktemp -d) GNUPGHOME=$gpg_dir gpg --no-tty --quiet --import $key - GNUPGHOME=$gpg_dir gpg --no-tty --quiet --command-fd 0 --edit-key 4911A8DFE976ACDFA07130DBE8372C0C1C734C51 << CMD + GNUPGHOME=$gpg_dir gpg --no-tty --quiet --command-fd 0 --edit-key F26D8A0AADF666CCB28F2AB1650EC3253B6A8FF5 << CMD trust 4 quit