Skip to content

Commit 9e63faf

Browse files
author
Norkz
committed
2 parents 707cad6 + 24e32f0 commit 9e63faf

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/docker-build-publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jobs:
3030

3131
steps:
3232
- name: 🛎️ Checkout Repo
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v4
3434

3535
- name: 🔖 Get App Version
3636
uses: tyankatsu0105/read-package-version-actions@v1
3737
id: package-version
3838

3939
- name: 🗂️ Make Docker Meta
4040
id: meta
41-
uses: docker/metadata-action@v3
41+
uses: docker/metadata-action@v5
4242
with:
4343
images: |
4444
${{ env.DH_IMAGE }}
@@ -54,12 +54,12 @@ jobs:
5454
org.opencontainers.image.licenses=GPL-3.0
5555
5656
- name: 🔧 Set up QEMU
57-
uses: docker/setup-qemu-action@v1
57+
uses: docker/setup-qemu-action@v3
5858
with:
5959
platforms: linux/amd64,linux/arm64
6060

6161
- name: 🔧 Set up Docker Buildx
62-
uses: docker/setup-buildx-action@v1
62+
uses: docker/setup-buildx-action@v3
6363
id: buildx
6464
with:
6565
driver-opts: image=moby/buildkit:v0.10.6
@@ -73,23 +73,23 @@ jobs:
7373
echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
7474
7575
- name: 🔑 Login to DockerHub
76-
uses: docker/login-action@v1
76+
uses: docker/login-action@v3
7777
with:
7878
username: ${{ secrets.DOCKER_USERNAME }}
7979
password: ${{ secrets.DOCKER_PASSWORD }}
8080

8181
- name: 🔑 Login to GitHub Container Registry
82-
uses: docker/login-action@v1
82+
uses: docker/login-action@v3
8383
with:
8484
registry: ghcr.io
8585
username: ${{ github.repository_owner }}
8686
password: ${{ secrets.GITHUB_TOKEN }}
8787

8888
- name: 🚦 Check Registry Status
89-
uses: crazy-max/ghaction-docker-status@v1
89+
uses: crazy-max/ghaction-docker-status@v3
9090

9191
- name: ⚒️ Build and push
92-
uses: docker/build-push-action@v2
92+
uses: docker/build-push-action@v6
9393
with:
9494
context: .
9595
file: ./dockerfile

0 commit comments

Comments
 (0)