Skip to content

Commit ab47ab4

Browse files
committed
update docker/build-push-action to v6 in workflows
1 parent eec3192 commit ab47ab4

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/docker-build.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,19 @@ jobs:
4848
password: ${{ secrets.DOCKER_PASSWORD }}
4949

5050
- name: Build and push
51-
uses: docker/build-push-action@v5
51+
uses: docker/build-push-action@v6
5252
with:
5353
context: ./docker/${{ matrix.series }}
5454
push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/main' }}
5555
tags: |
5656
snickerjp/docker-mysql-shell:${{ matrix.version }}
5757
snickerjp/docker-mysql-shell:${{ matrix.extra_tag }}
5858
${{ matrix.series == 'lts' && 'snickerjp/docker-mysql-shell:latest' || '' }}
59+
60+
- name: Update Docker Hub description
61+
uses: peter-evans/dockerhub-description@v4
62+
with:
63+
username: ${{ secrets.DOCKER_USERNAME }}
64+
password: ${{ secrets.DOCKER_PASSWORD }}
65+
repository: snickerjp/docker-mysql-shell
66+
readme-filepath: ./README.md

.github/workflows/docker-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
type=raw,value=latest,enable=${{ matrix.series == 'lts' }}
5252
5353
- name: Build and push Docker image
54-
uses: docker/build-push-action@v5
54+
uses: docker/build-push-action@v6
5555
with:
5656
context: ./docker/${{ matrix.series }}
5757
push: true

0 commit comments

Comments
 (0)