Skip to content

Conversation

@getong
Copy link
Contributor

@getong getong commented Jan 16, 2026

No description provided.

@getong getong requested a review from a team as a code owner January 16, 2026 02:44
@github-actions
Copy link

Diff for a75e713:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index 9320a76..822fb33 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -33,32 +33,32 @@ Directory: 25/slim
 
 Tags: 26.2.5.16, 26.2.5, 26.2, 26
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
 Directory: 26
 
 Tags: 26.2.5.16-alpine, 26.2.5-alpine, 26.2-alpine, 26-alpine
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
 Directory: 26/alpine
 
 Tags: 26.2.5.16-slim, 26.2.5-slim, 26.2-slim, 26-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
 Directory: 26/slim
 
 Tags: 27.3.4.6, 27.3.4, 27.3, 27
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
 Directory: 27
 
 Tags: 27.3.4.6-alpine, 27.3.4-alpine, 27.3-alpine, 27-alpine
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
 Directory: 27/alpine
 
 Tags: 27.3.4.6-slim, 27.3.4-slim, 27.3-slim, 27-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
 Directory: 27/slim
 
 Tags: 28.3.1.0, 28.3.1, 28.3, 28, latest
diff --git a/erlang_26-alpine/Dockerfile b/erlang_26-alpine/Dockerfile
index 4cdda57..7771308 100644
--- a/erlang_26-alpine/Dockerfile
+++ b/erlang_26-alpine/Dockerfile
@@ -1,14 +1,14 @@
 FROM alpine:3.20
 
 ENV OTP_VERSION="26.2.5.16" \
-    REBAR3_VERSION="3.25.0"
+    REBAR3_VERSION="3.26.0"
 
 LABEL org.opencontainers.image.version=$OTP_VERSION
 
 RUN set -xe \
 	&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
 	&& OTP_DOWNLOAD_SHA256="f145ea6aa8cb9c15fac7d7905fbd530c25420d11f4e23c5c3df6ccf27584625c" \
-	&& REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+	&& REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
 	&& apk add --no-cache --virtual .fetch-deps \
 		curl \
 		ca-certificates \
diff --git a/erlang_26-slim/Dockerfile b/erlang_26-slim/Dockerfile
index 215477d..5ecf362 100644
--- a/erlang_26-slim/Dockerfile
+++ b/erlang_26-slim/Dockerfile
@@ -1,7 +1,7 @@
 FROM debian:bookworm
 
 ENV OTP_VERSION="26.2.5.16" \
-    REBAR3_VERSION="3.25.0"
+    REBAR3_VERSION="3.26.0"
 
 LABEL org.opencontainers.image.version=$OTP_VERSION
 
@@ -47,7 +47,7 @@ RUN set -xe \
 	  && make install ) \
 	&& find /usr/local -name examples | xargs rm -rf \
 	&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
-	&& REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+	&& REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
 	&& mkdir -p /usr/src/rebar3-src \
 	&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
 	&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
diff --git a/erlang_26/Dockerfile b/erlang_26/Dockerfile
index aa4e387..f1f7324 100644
--- a/erlang_26/Dockerfile
+++ b/erlang_26/Dockerfile
@@ -1,7 +1,7 @@
 FROM buildpack-deps:bookworm
 
 ENV OTP_VERSION="26.2.5.16" \
-    REBAR3_VERSION="3.25.0"
+    REBAR3_VERSION="3.26.0"
 
 LABEL org.opencontainers.image.version=$OTP_VERSION
 
@@ -58,7 +58,7 @@ RUN set -xe \
 
 RUN set -xe \
 	&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
-	&& REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+	&& REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
 	&& mkdir -p /usr/src/rebar3-src \
 	&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
 	&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
diff --git a/erlang_27-alpine/Dockerfile b/erlang_27-alpine/Dockerfile
index bdba1a8..9a9f6a9 100644
--- a/erlang_27-alpine/Dockerfile
+++ b/erlang_27-alpine/Dockerfile
@@ -1,14 +1,14 @@
 FROM alpine:3.22
 
 ENV OTP_VERSION="27.3.4.6" \
-    REBAR3_VERSION="3.25.0"
+    REBAR3_VERSION="3.26.0"
 
 LABEL org.opencontainers.image.version=$OTP_VERSION
 
 RUN set -xe \
 	&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/releases/download/OTP-${OTP_VERSION}/otp_src_${OTP_VERSION}.tar.gz" \
 	&& OTP_DOWNLOAD_SHA256="658529f94cc5b8833907aa680a5e979e67c32dd6ebba69ed3b90b95f526ccda2" \
-	&& REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+	&& REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
 	&& apk add --no-cache --virtual .fetch-deps \
 		curl \
 		ca-certificates \
diff --git a/erlang_27-slim/Dockerfile b/erlang_27-slim/Dockerfile
index c422bf7..9414135 100644
--- a/erlang_27-slim/Dockerfile
+++ b/erlang_27-slim/Dockerfile
@@ -1,7 +1,7 @@
 FROM debian:bookworm
 
 ENV OTP_VERSION="27.3.4.6" \
-    REBAR3_VERSION="3.25.0"
+    REBAR3_VERSION="3.26.0"
 
 LABEL org.opencontainers.image.version=$OTP_VERSION
 
@@ -47,7 +47,7 @@ RUN set -xe \
 	  && make install ) \
 	&& find /usr/local -name examples | xargs rm -rf \
 	&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
-	&& REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+	&& REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
 	&& mkdir -p /usr/src/rebar3-src \
 	&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
 	&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
diff --git a/erlang_27/Dockerfile b/erlang_27/Dockerfile
index 33aa29f..42abe4e 100644
--- a/erlang_27/Dockerfile
+++ b/erlang_27/Dockerfile
@@ -1,7 +1,7 @@
 FROM buildpack-deps:bookworm
 
 ENV OTP_VERSION="27.3.4.6" \
-    REBAR3_VERSION="3.25.0"
+    REBAR3_VERSION="3.26.0"
 
 LABEL org.opencontainers.image.version=$OTP_VERSION
 
@@ -57,7 +57,7 @@ RUN set -xe \
 
 RUN set -xe \
 	&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
-	&& REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+	&& REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
 	&& mkdir -p /usr/src/rebar3-src \
 	&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
 	&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \

Relevant Maintainers:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant