Fix: use docker:27 with git install instead of docker:27-git
Some checks failed
Build and Push / build-backend (push) Failing after 20s
Build and Push / build-frontend (push) Failing after 4s
Build and Push / build-chat (push) Failing after 4s
Build and Push / build-openresty (push) Failing after 4s

This commit is contained in:
doomtube 2026-01-06 01:40:16 -05:00
parent fcf191e9b1
commit cf9bb358a3

View file

@ -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