Skip to content

Commit b4cda79

Browse files
authored
Merge pull request #65 from laradock/devops
fix: Devops
2 parents 7cbda25 + 84b8bc9 commit b4cda79

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/dockerimage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
php_version: ["5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2"]
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Docker meta
2121
id: meta
22-
uses: crazy-max/ghaction-docker-meta@v2
22+
uses: docker/metadata-action@v4
2323
with:
2424
images:
2525
laradock/php-fpm
@@ -32,10 +32,10 @@ jobs:
3232
type=raw,value=latest
3333
3434
- name: Set up QEMU
35-
uses: docker/setup-qemu-action@v1
35+
uses: docker/setup-qemu-action@v2
3636

3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@v1
38+
uses: docker/setup-buildx-action@v2
3939

4040
- name: Login to Docker Hub
4141
if: ${{ (github.repository == 'laradock/php-fpm') && (github.ref == 'refs/heads/master') }}
@@ -45,7 +45,7 @@ jobs:
4545
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
4646

4747
- name: Build and push
48-
uses: docker/build-push-action@v2
48+
uses: docker/build-push-action@v3
4949
with:
5050
file: Dockerfile-${{ matrix.php_version }}
5151
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6

0 commit comments

Comments
 (0)