From 48497a99348b288afc4267d9df10e12801f89a86 Mon Sep 17 00:00:00 2001 From: Bart Koelman <104792814+bart-vmware@users.noreply.github.com> Date: Thu, 2 Jul 2026 17:14:55 +0200 Subject: [PATCH] Replace unmaintained azure/docker-login with docker/login-action --- .github/workflows/build-and-stage.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-stage.yml b/.github/workflows/build-and-stage.yml index d087ddb..c3e920c 100644 --- a/.github/workflows/build-and-stage.yml +++ b/.github/workflows/build-and-stage.yml @@ -25,9 +25,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Git checkout - uses: actions/checkout@v6 - with: - persist-credentials: false + uses: actions/checkout@v6 + with: + persist-credentials: false - name: Detect template source from PR body env: @@ -46,9 +46,9 @@ jobs: fi - name: Login to container registry - uses: azure/docker-login@v2 + uses: docker/login-action@v4 with: - login-server: "${{ vars.DOCKER_REGISTRY }}" + registry: "${{ vars.DOCKER_REGISTRY }}" username: "${{ secrets.DOCKER_USERNAME }}" password: "${{ secrets.DOCKER_PASSWORD }}"