Skip to content

Commit

Permalink
Update Github actions to get rid of deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Aug 14, 2024
1 parent c042c21 commit 29b118a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
- uses: actions/checkout@v4

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: ./Dockerfile_x86_64
platforms: linux/amd64
Expand All @@ -35,19 +35,19 @@ jobs:
- uses: actions/checkout@v4

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Setup up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: arm64

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: ./Dockerfile_aarch64
platforms: linux/arm64
Expand Down

0 comments on commit 29b118a

Please sign in to comment.