From 232b82c0412e99b79e15a4e4e624708e3097e710 Mon Sep 17 00:00:00 2001 From: Evgeny Snitko Date: Tue, 12 May 2026 00:24:53 +0400 Subject: [PATCH 1/2] [CI-unified] Update nonroot user group and UID in Dockerfile --- ci-unified/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-unified/Dockerfile b/ci-unified/Dockerfile index ed1224d..d7ae9dd 100644 --- a/ci-unified/Dockerfile +++ b/ci-unified/Dockerfile @@ -23,8 +23,8 @@ ENV SHELL=/bin/bash \ ### base ### # base | add non-root user -RUN groupadd -g 1000 nonroot && \ - useradd -u 1000 -g 1000 -s /bin/bash -m nonroot +RUN groupadd -g 1001 nonroot && \ + useradd -u 1001 -g 1001 -s /bin/bash -m nonroot # base | customize cargo configuration COPY ci-unified/cargo-config /root/.cargo/config From 55b2b9dd9b9f327ec299d0b0332569865d558356 Mon Sep 17 00:00:00 2001 From: Evgeny Snitko Date: Tue, 12 May 2026 02:59:20 +0400 Subject: [PATCH 2/2] Allow build and push on push events --- .github/workflows/ci-unified.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-unified.yml b/.github/workflows/ci-unified.yml index 78ae336..f59995d 100644 --- a/.github/workflows/ci-unified.yml +++ b/.github/workflows/ci-unified.yml @@ -74,7 +74,7 @@ jobs: RESOLC_VERSION=${{env.RESOLC_VERSION}} - name: build and push - if: ${{ github.event_name == 'workflow_dispatch' }} + if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' }} uses: ./.github/actions/build-push-image with: registry: ${{ env.REGISTRY_PATH }}