diff --git a/.github/workflows/publish-marxan-docker-images.yml b/.github/workflows/publish-marxan-docker-images.yml index 1573c8626c..b883d69182 100644 --- a/.github/workflows/publish-marxan-docker-images.yml +++ b/.github/workflows/publish-marxan-docker-images.yml @@ -93,9 +93,9 @@ jobs: subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - name: Build and push image - uses: azure/docker-login@v1 + uses: docker/login-action@v3 with: - login-server: ${{ vars.REGISTRY_LOGIN_SERVER }} + registry: ${{ vars.REGISTRY_LOGIN_SERVER }} username: ${{ vars.REGISTRY_USERNAME }} password: ${{ secrets.REGISTRY_PASSWORD }} @@ -122,9 +122,9 @@ jobs: subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - name: Build and push image - uses: azure/docker-login@v1 + uses: docker/login-action@v3 with: - login-server: ${{ vars.REGISTRY_LOGIN_SERVER }} + registry: ${{ vars.REGISTRY_LOGIN_SERVER }} username: ${{ vars.REGISTRY_USERNAME }} password: ${{ secrets.REGISTRY_PASSWORD }} diff --git a/.github/workflows/publish-webshot-docker-images.yml b/.github/workflows/publish-webshot-docker-images.yml index d3ee8552b7..cbd1db268b 100644 --- a/.github/workflows/publish-webshot-docker-images.yml +++ b/.github/workflows/publish-webshot-docker-images.yml @@ -32,9 +32,9 @@ jobs: subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - name: Build and push image - uses: azure/docker-login@v1 + uses: docker/login-action@v3 with: - login-server: ${{ vars.REGISTRY_LOGIN_SERVER }} + registry: ${{ vars.REGISTRY_LOGIN_SERVER }} username: ${{ vars.REGISTRY_USERNAME }} password: ${{ secrets.REGISTRY_PASSWORD }}