Fix: use docker:27 with git install instead of docker:27-git
This commit is contained in:
parent
fcf191e9b1
commit
cf9bb358a3
1 changed files with 16 additions and 4 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue