From f1d1ba823a87268f8803a818edc73345e4fc0a50 Mon Sep 17 00:00:00 2001 From: Francine Lucca <40550942+francinelucca@users.noreply.github.com> Date: Thu, 22 Jun 2023 17:01:39 -0400 Subject: [PATCH] fix(ci): repair lerna config and update version workflow (#14060) --- .github/workflows/version.yml | 5 ----- lerna.json | 5 ++--- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 98b65ce58e1f..c825bb8b89d9 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -57,11 +57,6 @@ jobs: if: ${{ github.event.inputs.type == 'minor' }} run: | yarn lerna version minor --no-git-tag-version --no-push --yes - - name: Update lockfile - run: | - # We want the following command to update the lockfile since - # the package versions have been changed - yarn install --no-immutable - name: Generate token uses: tibdex/github-app-token@v1 id: generate_token diff --git a/lerna.json b/lerna.json index c9868773a659..1cdccdb17bfb 100644 --- a/lerna.json +++ b/lerna.json @@ -1,8 +1,6 @@ { - "lerna": "6.4.0", "version": "independent", "npmClient": "yarn", - "npmClientArgs": ["--immutable"], "ignoreChanges": [ "actions/**", "**/__fixtures__/**", @@ -16,5 +14,6 @@ "version": { "message": "chore(release): %s" } - } + }, + "$schema": "node_modules/lerna/schemas/lerna-schema.json" }