diff --git a/.github/workflows/deploy-dev.yaml b/.github/workflows/deploy-dev.yaml index 821783f..c5c5615 100644 --- a/.github/workflows/deploy-dev.yaml +++ b/.github/workflows/deploy-dev.yaml @@ -90,7 +90,7 @@ jobs: fi - name: Login to dev registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 if: ${{ steps.check_dev_registry.outputs.has_credentials == 'true' }} with: registry: ${{ steps.secrets.outputs.DECKHOUSE_DEV_REGISTRY_HOST }} diff --git a/.github/workflows/deploy-prod.yaml b/.github/workflows/deploy-prod.yaml index 0f4ef82..03a214c 100644 --- a/.github/workflows/deploy-prod.yaml +++ b/.github/workflows/deploy-prod.yaml @@ -68,7 +68,7 @@ jobs: fi - name: Login to dev registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 if: ${{ steps.check_dev_registry.outputs.has_credentials == 'true' }} with: registry: ${{ steps.secrets.outputs.DECKHOUSE_DEV_REGISTRY_HOST }} @@ -87,7 +87,7 @@ jobs: fi - name: Login to rw registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 if: ${{ steps.check_rw_registry.outputs.has_credentials == 'true' }} with: registry: ${{ steps.secrets.outputs.DECKHOUSE_REGISTRY_HOST }} @@ -106,7 +106,7 @@ jobs: fi - name: Login to readonly registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 if: ${{ steps.check_readonly_registry.outputs.has_credentials == 'true' }} with: registry: ${{ steps.secrets.outputs.DECKHOUSE_REGISTRY_READ_HOST }}