Skip to content

Commit d94e5fa

Browse files
committed
Update GitHub Actions workflow to latest versions of Docker actions
- Updated Docker action versions (`checkout`, `setup-qemu`, `setup-buildx`, `login`, `build-push`) for improved features and compatibility. - Renamed workflow file from `docker-image.yml` to `docker-image`.
1 parent c98b86a commit d94e5fa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docker-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: docker-image.yml
1+
name: docker-image
22

33
on:
44
push:
@@ -14,20 +14,20 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
- name: Set up QEMU
19-
uses: docker/setup-qemu-action@v1
19+
uses: docker/setup-qemu-action@v3
2020
- name: Set up Docker Buildx
21-
uses: docker/setup-buildx-action@v1
21+
uses: docker/setup-buildx-action@v3
2222
- name: Login to DockerHub
23-
uses: docker/login-action@v1
23+
uses: docker/login-action@v3
2424
with:
2525
username: ${{ secrets.DOCKERHUB_USERNAME }}
2626
password: ${{ secrets.DOCKERHUB_TOKEN }}
2727
- name: Generate App Version
2828
run: echo APP_VERSION=`git describe --tags --always` >> $GITHUB_ENV
2929
- name: Build and push
30-
uses: docker/build-push-action@v2
30+
uses: docker/build-push-action@v6
3131
with:
3232
context: .
3333
platforms: |

0 commit comments

Comments
 (0)