From cf9bb358a3562ff641b560e4616f7c90722672e2 Mon Sep 17 00:00:00 2001 From: doomtube Date: Tue, 6 Jan 2026 01:40:16 -0500 Subject: [PATCH] Fix: use docker:27 with git install instead of docker:27-git --- .forgejo/workflows/build.yml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 18e4d74..d0b5eaf 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -26,9 +26,12 @@ jobs: build-backend: runs-on: ubuntu-latest container: - image: docker:27-git + image: docker:27 options: --privileged steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: https://code.forgejo.org/actions/checkout@v4 @@ -56,9 +59,12 @@ jobs: build-frontend: runs-on: ubuntu-latest container: - image: docker:27-git + image: docker:27 options: --privileged steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: https://code.forgejo.org/actions/checkout@v4 @@ -86,9 +92,12 @@ jobs: build-chat: runs-on: ubuntu-latest container: - image: docker:27-git + image: docker:27 options: --privileged steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: https://code.forgejo.org/actions/checkout@v4 @@ -116,9 +125,12 @@ jobs: build-openresty: runs-on: ubuntu-latest container: - image: docker:27-git + image: docker:27 options: --privileged steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: https://code.forgejo.org/actions/checkout@v4