From 36f345325fc74bc68863c7d5135b4ead245503f1 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Sun, 13 Jul 2025 22:15:02 +0000 Subject: [PATCH] fix: remove invalid skip-checkout parameter from GitHub Actions workflows - Removed skip-checkout parameter from nightly-publish.yml - Removed skip-checkout parameter from marketplace-publish.yml - Removed skip-checkout parameter from changeset-release.yml The setup-node-pnpm action only accepts: node-version, pnpm-version, skip-install, and install-args. The skip-checkout parameter was causing warnings in workflow runs. Fixes #5674 --- .github/workflows/changeset-release.yml | 2 -- .github/workflows/marketplace-publish.yml | 2 -- .github/workflows/nightly-publish.yml | 1 - 3 files changed, 5 deletions(-) diff --git a/.github/workflows/changeset-release.yml b/.github/workflows/changeset-release.yml index 1b291abcb76..7c274b06396 100644 --- a/.github/workflows/changeset-release.yml +++ b/.github/workflows/changeset-release.yml @@ -31,8 +31,6 @@ jobs: ref: ${{ env.GIT_REF }} - name: Setup Node.js and pnpm uses: ./.github/actions/setup-node-pnpm - with: - skip-checkout: 'true' # Check if there are any new changesets to process - name: Check for changesets diff --git a/.github/workflows/marketplace-publish.yml b/.github/workflows/marketplace-publish.yml index 1aa68152055..aef91b2d323 100644 --- a/.github/workflows/marketplace-publish.yml +++ b/.github/workflows/marketplace-publish.yml @@ -25,8 +25,6 @@ jobs: ref: ${{ env.GIT_REF }} - name: Setup Node.js and pnpm uses: ./.github/actions/setup-node-pnpm - with: - skip-checkout: 'true' - name: Configure Git run: | git config user.name "github-actions[bot]" diff --git a/.github/workflows/nightly-publish.yml b/.github/workflows/nightly-publish.yml index 8ce4c5ca6ad..e25bdba990a 100644 --- a/.github/workflows/nightly-publish.yml +++ b/.github/workflows/nightly-publish.yml @@ -20,7 +20,6 @@ jobs: - name: Setup Node.js and pnpm uses: ./.github/actions/setup-node-pnpm with: - skip-checkout: 'true' install-args: '--frozen-lockfile' - name: Forge numeric Nightly version id: version