Skip to content

Commit

Permalink
Bump docker actions to latest stable release
Browse files Browse the repository at this point in the history
Part of matrix-org/synapse#14203

I've checked changelogs and AFAICS these are backwards compatible for
our purposes. (There's a semver bump because a newer version of GHA
runners and/or node.js is required. But we don't care about those.)
  • Loading branch information
David Robertson committed Apr 4, 2023
1 parent 35545b6 commit a8978ca
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,23 @@ jobs:
steps:
- name: Set up QEMU
id: QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2

- name: Inspect builder
run: docker buildx inspect

- name: Log in to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
pull: true
push: true
Expand Down Expand Up @@ -83,23 +83,23 @@ jobs:
steps:
- name: Set up QEMU
id: QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2

- name: Inspect builder
run: docker buildx inspect

- name: Log in to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
pull: true
push: true
Expand Down

0 comments on commit a8978ca

Please sign in to comment.