From e775fc462f3da692ef1a83cf26c820f5f8e49d40 Mon Sep 17 00:00:00 2001 From: Hudson Sadlier Date: Tue, 24 Feb 2026 14:26:09 -0800 Subject: [PATCH 1/2] fix: update azure login action to v2 hopefully will fix deployment issue ref: ess-1127 --- .github/workflows/push-main.yaml | 2 +- .github/workflows/release-publish.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push-main.yaml b/.github/workflows/push-main.yaml index 32da655..a1a7a4a 100644 --- a/.github/workflows/push-main.yaml +++ b/.github/workflows/push-main.yaml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Log in to Azure - uses: azure/login@v1 + uses: azure/login@v2 with: creds: ${{ secrets.AZURE_CREDENTIALS }} - name: Log in to Azure Container Registry diff --git a/.github/workflows/release-publish.yaml b/.github/workflows/release-publish.yaml index 38b2661..aae21e7 100644 --- a/.github/workflows/release-publish.yaml +++ b/.github/workflows/release-publish.yaml @@ -16,7 +16,7 @@ jobs: - name: Set $IMAGE_TAG run: echo "IMAGE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Login via Az module - uses: azure/login@v1 + uses: azure/login@v2 with: creds: ${{ secrets.AZURE_CREDENTIALS }} - name: Login to Azure Container Repository @@ -51,7 +51,7 @@ jobs: - uses: azure/setup-kubectl@v3 - uses: azure/setup-helm@v3 - name: Login via Az module - uses: azure/login@v1 + uses: azure/login@v2 with: creds: ${{ secrets.AZURE_CREDENTIALS }} - name: Log in to AKS From 107bc940851b0017a914e6fdbb3a000644713d11 Mon Sep 17 00:00:00 2001 From: Hudson Sadlier Date: Tue, 24 Feb 2026 14:30:18 -0800 Subject: [PATCH 2/2] fix: update cache action version throws error if not v3/v4 ref: ess-1127 --- .github/workflows/pull_request-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request-test.yaml b/.github/workflows/pull_request-test.yaml index 0bb2d90..1578ca9 100644 --- a/.github/workflows/pull_request-test.yaml +++ b/.github/workflows/pull_request-test.yaml @@ -17,7 +17,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Cache CLI dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ./node_modules key: v1-cli-cache-${{ matrix.node-version }}-${{ hashFiles('./package-lock.json') }}