Skip to content

Commit 11746a2

Browse files
committed
Update workflow
1 parent 872c9b5 commit 11746a2

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/build_versioned_alpine_images.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: ['8.1', '8.2', '8.3', '8.1-zts', '8.2-zts', '8.3-zts', '8.4', '8.4-zts']
16+
php: ['8.1', '8.2', '8.3', '8.4', '8.5', '8.1-zts', '8.2-zts', '8.3-zts', '8.4-zts', '8.5-zts']
1717

1818
name: The Alpine image for PHP ${{ matrix.php }}
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v6
2323

2424
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v1
25+
uses: docker/setup-buildx-action@v3
2626

2727
- name: Login to DockerHub
28-
uses: docker/login-action@v1
28+
uses: docker/login-action@v3
2929
with:
3030
username: ${{ secrets.DOCKERHUB_USERNAME }}
3131
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Build and push Docker image phpswoole/php:${{ matrix.php }}-alpine
3939
id: docker_build
40-
uses: docker/build-push-action@v2
40+
uses: docker/build-push-action@v6
4141
with:
4242
context: .
4343
file: ${{ matrix.php }}-alpine/Dockerfile

.github/workflows/build_versioned_images.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: ['8.1', '8.2', '8.3', '8.1-zts', '8.2-zts', '8.3-zts', '8.4', '8.4-zts']
16+
php: ['8.1', '8.2', '8.3', '8.4', '8.5', '8.1-zts', '8.2-zts', '8.3-zts', '8.4-zts', '8.5-zts']
1717

1818
name: The image for PHP ${{ matrix.php }}
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v6
2323

2424
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v1
25+
uses: docker/setup-buildx-action@v3
2626

2727
- name: Login to DockerHub
28-
uses: docker/login-action@v1
28+
uses: docker/login-action@v3
2929
with:
3030
username: ${{ secrets.DOCKERHUB_USERNAME }}
3131
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Build and push Docker image phpswoole/php:${{ matrix.php }}
3939
id: docker_build
40-
uses: docker/build-push-action@v2
40+
uses: docker/build-push-action@v6
4141
with:
4242
context: .
4343
file: ${{ matrix.php }}/Dockerfile

0 commit comments

Comments
 (0)