From 4f7b83ea76f82cfd5f2742fe8aa58cb6e6acb089 Mon Sep 17 00:00:00 2001 From: Mukzid <118280220+Mukzid@users.noreply.github.com> Date: Mon, 30 Dec 2024 11:28:49 +0530 Subject: [PATCH] Consistent Docker Buildx Action Version Changed the Docker Buildx action version in the nethermind job to v4 to match the others AND Ensured consistent indentation for better readability. These changes should improve the workflow's consistency and clarity --- .github/workflows/pr.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 8900322..d4019d0 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -24,6 +24,7 @@ jobs: file: geth/Dockerfile push: false platforms: ${{ matrix.arch }} + reth: runs-on: ubuntu-latest strategy: @@ -47,6 +48,7 @@ jobs: build-args: | FEATURES=${{ matrix.features }} platforms: ${{ matrix.arch }} + nethermind: runs-on: ubuntu-latest strategy: @@ -60,10 +62,9 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Build the Docker image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v4 with: context: . file: nethermind/Dockerfile push: false platforms: ${{ matrix.arch }} -