Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7
with:
# for build-files step
fetch-depth: 0
Expand Down Expand Up @@ -141,13 +141,13 @@ jobs:
org.opencontainers.image.authors=Geoff Bourne <itzgeoff@gmail.com>

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v4.1.0
uses: docker/setup-buildx-action@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v4.1.0

- name: Build for test
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7
with:
platforms: linux/amd64
tags: ${{ env.IMAGE_TO_TEST }}
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
password: ${{ github.token }}

- name: Build and push
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7
if: github.actor == github.repository_owner
with:
platforms: ${{ matrix.platforms }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/verify-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Build docs image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: docs/Dockerfile
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/verify-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,16 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7
with:
# for build-files step
fetch-depth: 0

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v4.1.0
uses: docker/setup-buildx-action@v4

- name: Confirm multi-arch build
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7
with:
platforms: ${{ matrix.platforms }}
# ensure latest base image is used
Expand All @@ -73,7 +73,7 @@ jobs:
cache-from: type=gha,scope=${{ matrix.variant }}

- name: Build for test
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7
with:
# Only build single platform since loading multi-arch image into daemon fails with
# "docker exporter does not currently support exporting manifest lists"
Expand Down