From 9378d0bf5dd5c521b1496c87d2f1bc85e76b4932 Mon Sep 17 00:00:00 2001 From: Evgeny Snitko Date: Fri, 20 Feb 2026 18:37:04 +0400 Subject: [PATCH 1/3] [ci-unified] Bump FORKLIFT_VERSION to 0.15.0 Updated FORKLIFT_VERSION from 0.14.3 to 0.15.0 in CI workflow. --- .github/workflows/ci-unified.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-unified.yml b/.github/workflows/ci-unified.yml index baad310..fca4113 100644 --- a/.github/workflows/ci-unified.yml +++ b/.github/workflows/ci-unified.yml @@ -6,6 +6,12 @@ on: paths: - "ci-unified/*" - ".github/workflows/ci-unified.yml" + push: + branches: + - main + paths: + - "ci-unified/*" + - ".github/workflows/ci-unified.yml" workflow_dispatch: concurrency: @@ -18,7 +24,7 @@ env: IMAGE_NAME: "ci-unified" RUST_STABLE_VERSION: "1.93.0" RUST_NIGHTLY_VERSION: "2026-01-27" - FORKLIFT_VERSION: "0.14.3" + FORKLIFT_VERSION: "0.15.0" CODECOV_UPLOADER_VERSION: "v0.7.3" CODECOV_CLI_VERSION: "v0.6.0" DISTRO_CODENAME: "bullseye" From 6841322e86a9d39ad269b167ef1ef68a86ca5ced Mon Sep 17 00:00:00 2001 From: Evgeny Snitko Date: Fri, 20 Feb 2026 18:52:28 +0400 Subject: [PATCH 2/3] Create Docker directory if it doesn't exist Ensure the Docker directory is created before logging in. --- .github/actions/build-push-image/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/build-push-image/action.yml b/.github/actions/build-push-image/action.yml index fad94d6..49a49ab 100644 --- a/.github/actions/build-push-image/action.yml +++ b/.github/actions/build-push-image/action.yml @@ -41,6 +41,8 @@ runs: sudo apt-get -y update sudo apt-get -y install buildah podman + - run: mkdir -p /root/.docker/ || true + - name: Log in uses: redhat-actions/podman-login@v1 with: From 7eb992ae3cff07cb59b8061eea9c4f29b3e20795 Mon Sep 17 00:00:00 2001 From: Evgeny Snitko Date: Fri, 20 Feb 2026 18:53:10 +0400 Subject: [PATCH 3/3] shell: bash --- .github/actions/build-push-image/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/build-push-image/action.yml b/.github/actions/build-push-image/action.yml index 49a49ab..d0ba119 100644 --- a/.github/actions/build-push-image/action.yml +++ b/.github/actions/build-push-image/action.yml @@ -42,6 +42,7 @@ runs: sudo apt-get -y install buildah podman - run: mkdir -p /root/.docker/ || true + shell: bash - name: Log in uses: redhat-actions/podman-login@v1