Skip to content

Commit 09faef8

Browse files
chore(deps): consolidate Docker GitHub Actions bumps for release-v1
- docker/login-action v3→v4 - docker/metadata-action v5→v6 - docker/setup-qemu-action v3→v4 - docker/setup-buildx-action v3→v4 - docker/build-push-action v6→v7 Closes astroautomata#1221 Closes astroautomata#1222 Closes astroautomata#1223 Closes astroautomata#1224 Closes astroautomata#1226
1 parent 2c627ab commit 09faef8

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/docker_deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@v4
2626
- name: Login to Docker Hub
27-
uses: docker/login-action@v3
27+
uses: docker/login-action@v4
2828
if: github.event_name != 'pull_request'
2929
with:
3030
username: ${{ secrets.DOCKERHUB_USERNAME }}
3131
password: ${{ secrets.DOCKERHUB_TOKEN }}
3232
- name: Login to GitHub registry
33-
uses: docker/login-action@v3
33+
uses: docker/login-action@v4
3434
if: github.event_name != 'pull_request'
3535
with:
3636
registry: ghcr.io
3737
username: ${{ github.repository_owner }}
3838
password: ${{ secrets.GITHUB_TOKEN }}
3939
- name: Docker meta
4040
id: meta
41-
uses: docker/metadata-action@v5
41+
uses: docker/metadata-action@v6
4242
with:
4343
# List of Docker images to use as base name for tags
4444
images: |
@@ -55,11 +55,11 @@ jobs:
5555
type=sha
5656
type=raw,value=latest,enable={{is_default_branch}}
5757
- name: Set up QEMU
58-
uses: docker/setup-qemu-action@v3
58+
uses: docker/setup-qemu-action@v4
5959
- name: Set up Docker Buildx
60-
uses: docker/setup-buildx-action@v3
60+
uses: docker/setup-buildx-action@v4
6161
- name: Build and push
62-
uses: docker/build-push-action@v6
62+
uses: docker/build-push-action@v7
6363
with:
6464
context: .
6565
platforms: ${{ matrix.arch }}

0 commit comments

Comments
 (0)