Skip to content

Commit 645f90e

Browse files
committed
chore: upgrade Github actions version
1 parent c56456d commit 645f90e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/docker.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
echo "imageName=$imageName" >> $GITHUB_ENV
2626
- name: Docker meta
2727
id: docker_meta
28-
uses: crazy-max/ghaction-docker-meta@v1
28+
uses: docker/metadata-action@v4
2929
with:
3030
images: ${{ env.imageName }}
3131
- name: Set up QEMU
32-
uses: docker/setup-qemu-action@v1
32+
uses: docker/setup-qemu-action@v2
3333
- name: Set up Docker Buildx
34-
uses: docker/setup-buildx-action@v1
34+
uses: docker/setup-buildx-action@v2
3535
- name: Login to Harbor
36-
uses: docker/login-action@v1
36+
uses: docker/login-action@v2
3737
with:
3838
username: ${{ secrets.DOCKERHUB_USERNAME }}
3939
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -46,7 +46,7 @@ jobs:
4646
${{ runner.os }}-docker
4747
- name: Build and push
4848
id: docker_build
49-
uses: docker/build-push-action@v2
49+
uses: docker/build-push-action@v4
5050
with:
5151
platforms: ${{ env.platforms }}
5252
push: ${{ github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)