From 900fbf4c695af15656553e442a65192e797b9dd2 Mon Sep 17 00:00:00 2001 From: Cormac McCarthy Date: Thu, 3 Aug 2023 14:02:49 -0700 Subject: [PATCH] Bump version of Docker action used to 2.2.0 (#48) --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5f6a04b5..472c5ef7 100644 --- a/action.yml +++ b/action.yml @@ -183,7 +183,7 @@ runs: creds: ${{ inputs.azureCredentials }} - name: Log in to Azure Container Registry - uses: docker/login-action@v2.0.0 + uses: docker/login-action@v2.2.0 if: ${{ inputs.acrName != '' && inputs.acrUsername != '' && inputs.acrPassword != '' }} with: registry: ${{ inputs.acrName }}.azurecr.io @@ -191,7 +191,7 @@ runs: password: ${{ inputs.acrPassword }} - name: Log in to Container Registry - uses: docker/login-action@v2.0.0 + uses: docker/login-action@v2.2.0 if: ${{ inputs.registryUrl != '' && inputs.registryUsername != '' && inputs.registryPassword != '' }} with: registry: ${{ inputs.registryUrl }}