Skip to content

Commit 1bab38d

Browse files
committed
upgrade ci
1 parent c87caac commit 1bab38d

File tree

13 files changed

+44
-44
lines changed

13 files changed

+44
-44
lines changed

.github/workflows/build_latest_alpine_images.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
steps:
1818
-
1919
name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121

2222
-
2323
name: Set up QEMU
24-
uses: docker/setup-qemu-action@v1
24+
uses: docker/setup-qemu-action@v3
2525

2626
-
2727
name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@v1
28+
uses: docker/setup-buildx-action@v3
2929

3030
-
3131
name: Login to DockerHub
32-
uses: docker/login-action@v1
32+
uses: docker/login-action@v3
3333
with:
3434
username: ${{ secrets.DOCKERHUB_USERNAME }}
3535
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -42,11 +42,11 @@ jobs:
4242
-
4343
name: Build and push Docker image openswoole/swoole:php${{ matrix.php }}-alpine
4444
id: docker_build
45-
uses: docker/build-push-action@v2
45+
uses: docker/build-push-action@v5
4646
with:
4747
context: .
4848
file: dockerfiles/latest/php${{ matrix.php }}/alpine/Dockerfile
49-
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x
49+
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
5050
push: true
5151
tags: ${{ steps.set_full_names.outputs.full_names }}
5252

.github/workflows/build_latest_dev_images.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
steps:
1818
-
1919
name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121

2222
-
2323
name: Set up QEMU
24-
uses: docker/setup-qemu-action@v1
24+
uses: docker/setup-qemu-action@v3
2525

2626
-
2727
name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@v1
28+
uses: docker/setup-buildx-action@v3
2929

3030
-
3131
name: Login to DockerHub
32-
uses: docker/login-action@v1
32+
uses: docker/login-action@v3
3333
with:
3434
username: ${{ secrets.DOCKERHUB_USERNAME }}
3535
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -42,11 +42,11 @@ jobs:
4242
-
4343
name: Build and push Docker image openswoole/swoole:php${{ matrix.php }}-dev
4444
id: docker_build
45-
uses: docker/build-push-action@v2
45+
uses: docker/build-push-action@v5
4646
with:
4747
context: .
4848
file: dockerfiles/latest/php${{ matrix.php }}/cli/Dockerfile
49-
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8,linux/ppc64le
49+
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
5050
push: true
5151
tags: ${{ steps.set_full_names.outputs.full_names }}
5252
build-args: DEV_MODE=true

.github/workflows/build_latest_images.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
steps:
1818
-
1919
name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121

2222
-
2323
name: Set up QEMU
24-
uses: docker/setup-qemu-action@v1
24+
uses: docker/setup-qemu-action@v3
2525

2626
-
2727
name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@v1
28+
uses: docker/setup-buildx-action@v3
2929

3030
-
3131
name: Login to DockerHub
32-
uses: docker/login-action@v1
32+
uses: docker/login-action@v3
3333
with:
3434
username: ${{ secrets.DOCKERHUB_USERNAME }}
3535
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -42,11 +42,11 @@ jobs:
4242
-
4343
name: Build and push Docker image openswoole/swoole:php${{ matrix.php }}
4444
id: docker_build
45-
uses: docker/build-push-action@v2
45+
uses: docker/build-push-action@v5
4646
with:
4747
context: .
4848
file: dockerfiles/latest/php${{ matrix.php }}/cli/Dockerfile
49-
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le
49+
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
5050
push: true
5151
tags: ${{ steps.set_full_names.outputs.full_names }}
5252

.github/workflows/build_versioned_alpine_images.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ jobs:
2323
steps:
2424
-
2525
name: Checkout
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
-
2929
name: Set up QEMU
30-
uses: docker/setup-qemu-action@v1
30+
uses: docker/setup-qemu-action@v3
3131

3232
-
3333
name: Set up Docker Buildx
34-
uses: docker/setup-buildx-action@v1
34+
uses: docker/setup-buildx-action@v3
3535

3636
-
3737
name: Login to DockerHub
38-
uses: docker/login-action@v1
38+
uses: docker/login-action@v3
3939
with:
4040
username: ${{ secrets.DOCKERHUB_USERNAME }}
4141
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -64,11 +64,11 @@ jobs:
6464
-
6565
name: Build and push Docker image openswoole/swoole:${{ steps.params.outputs.branch_name }}-php${{ matrix.php }}-alpine
6666
id: docker_build
67-
uses: docker/build-push-action@v2
67+
uses: docker/build-push-action@v5
6868
with:
6969
context: .
7070
file: dockerfiles/${{ steps.params.outputs.branch_name }}/php${{ matrix.php }}/alpine/Dockerfile
71-
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le
71+
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
7272
push: true
7373
tags: ${{ steps.params.outputs.full_names }}
7474

.github/workflows/build_versioned_dev_images.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ jobs:
2222
steps:
2323
-
2424
name: Checkout
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626

2727
-
2828
name: Set up QEMU
29-
uses: docker/setup-qemu-action@v1
29+
uses: docker/setup-qemu-action@v3
3030

3131
-
3232
name: Set up Docker Buildx
33-
uses: docker/setup-buildx-action@v1
33+
uses: docker/setup-buildx-action@v3
3434

3535
-
3636
name: Login to DockerHub
37-
uses: docker/login-action@v1
37+
uses: docker/login-action@v3
3838
with:
3939
username: ${{ secrets.DOCKERHUB_USERNAME }}
4040
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -63,11 +63,11 @@ jobs:
6363
-
6464
name: Build and push Docker image openswoole/swoole:${{ steps.params.outputs.branch_name }}-php${{ matrix.php }}-dev
6565
id: docker_build
66-
uses: docker/build-push-action@v2
66+
uses: docker/build-push-action@v5
6767
with:
6868
context: .
6969
file: dockerfiles/${{ steps.params.outputs.branch_name }}/php${{ matrix.php }}/cli/Dockerfile
70-
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8,linux/ppc64le
70+
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
7171
push: true
7272
tags: ${{ steps.params.outputs.full_names }}
7373
build-args: DEV_MODE=true

.github/workflows/build_versioned_images.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ jobs:
2222
steps:
2323
-
2424
name: Checkout
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626

2727
-
2828
name: Set up QEMU
29-
uses: docker/setup-qemu-action@v1
29+
uses: docker/setup-qemu-action@v3
3030

3131
-
3232
name: Set up Docker Buildx
33-
uses: docker/setup-buildx-action@v1
33+
uses: docker/setup-buildx-action@v3
3434

3535
-
3636
name: Login to DockerHub
37-
uses: docker/login-action@v1
37+
uses: docker/login-action@v3
3838
with:
3939
username: ${{ secrets.DOCKERHUB_USERNAME }}
4040
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -63,11 +63,11 @@ jobs:
6363
-
6464
name: Build and push Docker image openswoole/swoole:${{ steps.params.outputs.branch_name }}-php${{ matrix.php }}
6565
id: docker_build
66-
uses: docker/build-push-action@v2
66+
uses: docker/build-push-action@v5
6767
with:
6868
context: .
6969
file: dockerfiles/${{ steps.params.outputs.branch_name }}/php${{ matrix.php }}/cli/Dockerfile
70-
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le
70+
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
7171
push: true
7272
tags: ${{ steps.params.outputs.full_names }}
7373

config/25.2.0.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#
44
status: "under development"
55
php:
6-
- "8.2.26"
7-
- "8.3.15"
6+
- "8.2.0"
7+
- "8.3.0"
88
- "8.4.2"
99
image:
1010
composer:

dockerfiles/25.2.0/php8.2/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.2.26-cli-alpine3.20
1+
FROM php:8.2.0-cli-alpine3.16
22

33
RUN \
44
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \

dockerfiles/25.2.0/php8.2/cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.2.26-cli
1+
FROM php:8.2.0-cli
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV TERM=xterm-color

dockerfiles/25.2.0/php8.3/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.3.15-cli-alpine3.20
1+
FROM php:8.3.0-cli-alpine3.18
22

33
RUN \
44
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \

0 commit comments

Comments
 (0)