Skip to content

Commit 42634cd

Browse files
authored
Merge pull request #59 from laradock/devops
fix: Devops
2 parents a87047a + 40d630d commit 42634cd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/dockerpublish.yml

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

2323
- name: Docker meta
2424
id: meta
25-
uses: crazy-max/ghaction-docker-meta@v2
25+
uses: docker/metadata-action@v4
2626
with:
2727
images:
2828
laradock/workspace
@@ -36,10 +36,10 @@ jobs:
3636
type=raw,value=latest
3737
3838
- name: Set up QEMU
39-
uses: docker/setup-qemu-action@v1
39+
uses: docker/setup-qemu-action@v2
4040

4141
- name: Set up Docker Buildx
42-
uses: docker/setup-buildx-action@v1
42+
uses: docker/setup-buildx-action@v2
4343

4444
- name: Login to Docker Hub
4545
if: ${{ (github.repository == 'laradock/workspace') && (github.ref == 'refs/heads/master') }}
@@ -49,7 +49,7 @@ jobs:
4949
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
5050

5151
- name: Build and push
52-
uses: docker/build-push-action@v2
52+
uses: docker/build-push-action@v3
5353
with:
5454
file: Dockerfile-${{ matrix.php_version }}
5555
platforms: linux/amd64,linux/arm64,linux/386

0 commit comments

Comments
 (0)