Skip to content

Commit

Permalink
ci/builder: upgrade to Hugo v0.128
Browse files Browse the repository at this point in the history
The upgrade to Hugo v0.124.1 in MaterializeInc#27679 has broken the deploy_website
build. The issue appears to be a bug in the Go AWS SDK version that Hugo
v0.124.1 uses that causes credential refreshing to sporadically fail.
The latest version of Hugo (v0.128) incoporates a Go AWS SDK upgrade
that hopefully fixes the issue.
  • Loading branch information
benesch committed Jun 27, 2024
1 parent 7d8ad36 commit b796978
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ RUN if [ $ARCH_GCC = x86_64 ]; then \
&& echo '04d4be5097b98cd28de469f8856b3fbe82669f57b482a4cf3092a55e9e8e9e0d htmltest.tar.gz' | sha256sum --check \
&& tar -xzf htmltest.tar.gz -C /usr/local/bin htmltest \
&& rm htmltest.tar.gz \
&& curl -fsSL https://github.com/gohugoio/hugo/releases/download/v0.124.1/hugo_extended_0.124.1_Linux-64bit.tar.gz > hugo.tar.gz \
&& echo '55f5a5f6a4c923457b2ed4e2b00c251eabfe43d8d4afbe2ada92d9759c5e0410 hugo.tar.gz' | sha256sum --check \
&& curl -fsSL https://github.com/gohugoio/hugo/releases/download/v0.128.0/hugo_extended_0.128.0_Linux-64bit.tar.gz > hugo.tar.gz \
&& echo 'a39cd72eff188f8596f09f3a7db9195477c4ce21072d286832f9fde15ba5d336 hugo.tar.gz' | sha256sum --check \
&& tar -xzf hugo.tar.gz -C /usr/local/bin hugo \
&& rm hugo.tar.gz; \
fi
Expand Down

0 comments on commit b796978

Please sign in to comment.