Fix yq SHA256 checksum to correct value

This commit is contained in:
2026-03-08 00:24:12 +11:00
parent c909668246
commit 18f559c4e6

View File

@@ -41,7 +41,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Install yq (v4.x) with checksum verification
RUN YQ_VERSION="v4.40.5" && \
YQ_SHA256="47d0032f1f769c2e91b52bfde058d4956e5a959988a8460ed0a55d6ce703795c" && \
YQ_SHA256="0d6aaf1cf44a8d18fbc7ed0ef14f735a8df8d2e314c4cc0f0242d35c0a440c95" && \
wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 -O /usr/bin/yq && \
echo "${YQ_SHA256} /usr/bin/yq" | sha256sum -c - && \
chmod +x /usr/bin/yq