From c5faea29a665b6c3a1ca52981dcf6801e0b1fe07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tatsat=20=28Tats=29=20Mishra=20=F0=9F=90=89?= Date: Wed, 19 Nov 2025 14:30:31 +1300 Subject: [PATCH] Macos 13 is EOL. (#233) --------- Signed-off-by: Tatsat Mishra --- .github/workflows/integration-tests.yml | 8 +------- .github/workflows/unit-tests.yml | 1 - 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 35b94e6..8e02b51 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -13,7 +13,6 @@ jobs: - ubuntu-latest - ubuntu-24.04-arm - macos-latest # arm - - macos-13 # x64 fail-fast: false runs-on: ${{ matrix.os }} env: @@ -80,12 +79,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - HELM_LATEST=$(gh release list \ - --repo helm/helm \ - --exclude-drafts \ - --exclude-pre-releases \ - --json name,isLatest \ - --jq '.[] | select(.isLatest)|.name' | awk '{print $2}') + HELM_LATEST=$(curl -s https://get.helm.sh/helm-latest-version) if [[ $(helm version) != *$HELM_LATEST* ]]; then echo "HELM VERSION INCORRECT: HELM VERSION DOES NOT CONTAIN $HELM_LATEST" diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index a97758a..34bec81 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -19,7 +19,6 @@ jobs: - windows-latest - windows-11-arm - macos-latest # arm - - macos-13 # x64 fail-fast: false runs-on: ${{ matrix.os }} steps: