This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 6497fa546cf Fix registry CI by upgrading pnpm from v9 to v10 (#65189)
6497fa546cf is described below

commit 6497fa546cf0a6a150222b1b695500611d62d8b1
Author: Kaxil Naik <[email protected]>
AuthorDate: Tue Apr 14 10:56:33 2026 +0100

    Fix registry CI by upgrading pnpm from v9 to v10 (#65189)
    
    The registry lockfile was generated with pnpm v10 but CI installs
    pnpm v9, which reads pnpm-workspace.yaml overrides differently,
    causing ERR_PNPM_LOCKFILE_CONFIG_MISMATCH on every run.
---
 .github/workflows/registry-backfill.yml | 2 +-
 .github/workflows/registry-build.yml    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/registry-backfill.yml 
b/.github/workflows/registry-backfill.yml
index 2e1d089e967..243cbadb1ca 100644
--- a/.github/workflows/registry-backfill.yml
+++ b/.github/workflows/registry-backfill.yml
@@ -188,7 +188,7 @@ jobs:
       - name: "Setup pnpm"
         uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320  # 
v5.0.0
         with:
-          version: 9
+          version: 10
 
       - name: "Setup Node.js"
         uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f  # 
v6.3.0
diff --git a/.github/workflows/registry-build.yml 
b/.github/workflows/registry-build.yml
index fe4655cf30f..ce80e8b57c2 100644
--- a/.github/workflows/registry-build.yml
+++ b/.github/workflows/registry-build.yml
@@ -219,7 +219,7 @@ jobs:
       - name: "Setup pnpm"
         uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320  # 
v5.0.0
         with:
-          version: 9
+          version: 10
 
       - name: "Setup Node.js"
         uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f  # 
v6.3.0

Reply via email to