From a2e4ec090f28dad2ccf7f1dc0724529edc49df28 Mon Sep 17 00:00:00 2001 From: Steven Klaiber-Noble Date: Thu, 11 Dec 2025 15:40:48 -0500 Subject: [PATCH 1/2] Enable Corepack in publish workflow - Add corepack enable step before setup-node - Ensures correct yarn version (4.9.2) is used as specified in packageManager - Matches the pattern used in tests.yml and release.yml --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 80fcd7d..1e2cf46 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,6 +20,9 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 name: Checkout repository + - name: Enable Corepack + run: corepack enable + - uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 name: Use Node.js 20.x with: From adfd51cb4b1ac78b2a08bd391eca8dbf830c8a19 Mon Sep 17 00:00:00 2001 From: Steven Klaiber-Noble Date: Thu, 11 Dec 2025 15:43:04 -0500 Subject: [PATCH 2/2] Enable Corepack in updateSDKQueries workflow - Add corepack enable step before setup-node - Also enable corepack in yarn cache directory path step (matching tests.yml pattern) - Ensures correct yarn version (4.9.2) is used --- .github/workflows/updateSDKQueries.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/updateSDKQueries.yml b/.github/workflows/updateSDKQueries.yml index 8cccc8a..6b9c821 100644 --- a/.github/workflows/updateSDKQueries.yml +++ b/.github/workflows/updateSDKQueries.yml @@ -23,6 +23,9 @@ jobs: with: path: node-client + - name: Enable Corepack + run: corepack enable + - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT