From ccc2d7a793b1f593cb5070385d13bed5c8694924 Mon Sep 17 00:00:00 2001 From: Zeping Bai Date: Fri, 11 Sep 2026 09:44:46 +0800 Subject: [PATCH 1/2] ci: fix dev image push --- .github/workflows/push-dev-image-on-commit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push-dev-image-on-commit.yml b/.github/workflows/push-dev-image-on-commit.yml index 741dd6812910..65485d7aef5e 100644 --- a/.github/workflows/push-dev-image-on-commit.yml +++ b/.github/workflows/push-dev-image-on-commit.yml @@ -83,7 +83,7 @@ jobs: - name: Login to Docker Hub if: github.ref == 'refs/heads/master' - uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 + uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0 with: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -99,7 +99,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Login to Docker Hub - uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 + uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0 with: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} From 99527af270727a68c0f107723d4bd310f6b45833 Mon Sep 17 00:00:00 2001 From: Zeping Bai Date: Fri, 11 Sep 2026 09:51:22 +0800 Subject: [PATCH 2/2] use debian trixie --- docker/debian-dev/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/debian-dev/Dockerfile b/docker/debian-dev/Dockerfile index 25358c8deb92..e4e405f8146a 100644 --- a/docker/debian-dev/Dockerfile +++ b/docker/debian-dev/Dockerfile @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # -FROM debian:bullseye-slim AS build +FROM debian:trixie-slim AS build ARG ENABLE_PROXY=false ARG CODE_PATH @@ -49,7 +49,7 @@ RUN set -x \ && cp -r deps ${ENV_INST_LUADIR} \ && make install -FROM debian:bullseye-slim +FROM debian:trixie-slim ARG ENTRYPOINT_PATH=./docker-entrypoint.sh ARG INSTALL_BROTLI=./install-brotli.sh