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') }} 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