From 2f08fc91204e9da3d5de9b70e3a269ebbe97bba6 Mon Sep 17 00:00:00 2001 From: Tharindu Weerasinghe <52607043+tharindu-nw@users.noreply.github.com> Date: Tue, 10 Dec 2024 22:49:17 +0530 Subject: [PATCH] Upgrade docker actions in the release pipeline --- .github/workflows/publish-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 66977cb498..f39ebbe9e6 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -87,17 +87,17 @@ jobs: - name: Copy zip artifact run: cp ballerina/build/distributions/ballerina-22*.zip module-ballerina-docker/base/docker/ - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_HUB_USER }} password: ${{ secrets.DOCKER_HUB_TOKEN }} - name: Build the docker image id: docker_build - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: module-ballerina-docker/base/docker/ load: true