From 18c5fce8929a448b23a367c190c15e9ef7e7f202 Mon Sep 17 00:00:00 2001 From: Ben Kochie Date: Tue, 30 Mar 2021 09:16:15 +0200 Subject: [PATCH] Update yq checksum Use the correct release checksum, not the testing one. Signed-off-by: Ben Kochie --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b8b79ceb0..d3afc6ec5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -111,7 +111,7 @@ jobs: steps: - checkout - run: mkdir -v -p "${PATH%%:*}" && curl -sL --fail https://github.com/mikefarah/yq/releases/download/v4.6.3/yq_linux_amd64 -o "${PATH%%:*}/yq" && chmod -v +x "${PATH%%:*}/yq" - - run: sha256sum -c <(echo "c4343783c3361495c0d6d1eb742bba7432aa65e13e9fb8d7e201d544bcf14247 ${PATH%%:*}/yq") + - run: sha256sum -c <(echo "c4343783c3361495c0d6d1eb742bba7432aa65e13e9fb8d7e201d544bcf14246 ${PATH%%:*}/yq") - run: ./scripts/sync_repo_files.sh workflows: