Skip to content

Commit

Permalink
Update all actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bdevans authored Jan 9, 2024
1 parent a90181d commit 062fcb5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
# https://github.com/actions/checkout/
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
# https://github.com/docker/metadata-action
with:
images: |
Expand All @@ -39,21 +39,21 @@ jobs:
org.opencontainers.image.source=https://github.com/Chaste/chaste-docker
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
# https://github.com/docker/setup-qemu-action
with:
platforms: 'amd64,arm64'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
# https://github.com/docker/setup-buildx-action
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
# https://github.com/docker/login-action
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push the Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
# https://github.com/docker/build-push-action
with:
context: .
Expand Down

0 comments on commit 062fcb5

Please sign in to comment.