From 358b72a78346de91c9c4833eee78fceebaa8b397 Mon Sep 17 00:00:00 2001 From: Qwynn Marcelle Date: Tue, 12 May 2026 23:33:32 -0400 Subject: [PATCH] fix(ci): remove duplicate pnpm version spec; fix release date to 2026-05-12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI was failing on every run: pnpm/action-setup@v4 errors when both 'version: 9' in the workflow AND 'packageManager: pnpm@9.0.0' in package.json are present. Removing the workflow key lets action-setup read packageManager from package.json (the intended source of truth). Also corrects CHANGELOG [0.3.0] date from 2026-05-22 → 2026-05-12. --- .github/workflows/ci.yml | 2 -- packages/spec/CHANGELOG.md | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11fdc4b..b156549 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,6 @@ jobs: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - with: - version: 9 - uses: actions/setup-node@v4 with: diff --git a/packages/spec/CHANGELOG.md b/packages/spec/CHANGELOG.md index 5040226..10bbce0 100644 --- a/packages/spec/CHANGELOG.md +++ b/packages/spec/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to `@workspacejson/spec` are documented here. ## Unreleased -## [0.3.0] - 2026-05-22 +## [0.3.0] - 2026-05-12 ### Breaking changes - Schema shape changed to four-property structure: `manual`, `generated`, `agents`, `health`.