From 0565e229ef0e85d40e676e294fe3736655b15113 Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Thu, 2 Sep 2021 09:32:00 +0200 Subject: [PATCH] .github: fetch the correct Flatcar image signing key `Flatcar_Image_Signing_Key.asc` on https://www.flatcar-linux.org is outdated, expired. That's why all Github Actions failed to run. We need to fetch the image signing key from the correct URL, https://kinvolk.io/flatcar-container-linux/... --- .../coreos-overlay/.github/workflows/setup-flatcar-sdk.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/setup-flatcar-sdk.sh b/sdk_container/src/third_party/coreos-overlay/.github/workflows/setup-flatcar-sdk.sh index 32183e3850..bc445a0a55 100755 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/setup-flatcar-sdk.sh +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/setup-flatcar-sdk.sh @@ -5,7 +5,7 @@ set -euo pipefail CORK_VERSION=$(curl -sL https://api.github.com/repos/kinvolk/mantle/releases/latest | jq -r .tag_name | sed -e 's/^v//') curl -L -o cork https://github.com/kinvolk/mantle/releases/download/v"${CORK_VERSION}"/cork-"${CORK_VERSION}"-amd64 curl -L -o cork.sig https://github.com/kinvolk/mantle/releases/download/v"${CORK_VERSION}"/cork-"${CORK_VERSION}"-amd64.sig -curl -LO https://www.flatcar-linux.org/security/image-signing-key/Flatcar_Image_Signing_Key.asc +curl -LO https://kinvolk.io/flatcar-container-linux/security/image-signing-key/Flatcar_Image_Signing_Key.asc gpg --import Flatcar_Image_Signing_Key.asc gpg --verify cork.sig cork rm -f cork.sig Flatcar_Image_Signing_Key.asc