This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch users/damccorm/dockerActions in repository https://gitbox.apache.org/repos/asf/beam.git
commit fc8d33b486e1c36e065dbe445e154ea8b72720e3 Author: Danny McCormick <[email protected]> AuthorDate: Mon Mar 23 09:31:35 2026 -0400 Upgrade Docker setup actions to version 4 --- .github/workflows/build_release_candidate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_release_candidate.yml b/.github/workflows/build_release_candidate.yml index 120cef1eb64..66939df18ca 100644 --- a/.github/workflows/build_release_candidate.yml +++ b/.github/workflows/build_release_candidate.yml @@ -285,14 +285,14 @@ jobs: with: python-version: '3.10' - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Remove default github maven configuration # This step is a workaround to avoid a decryption issue of Beam's # net.linguica.gradle.maven.settings plugin and github's provided maven # settings.xml file run: rm ~/.m2/settings.xml || true - name: Login to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }}
