From 4eb26a985a5387feb192f6a811eda648ac0eb8eb Mon Sep 17 00:00:00 2001 From: michaelroytman Date: Tue, 4 Jun 2024 12:32:50 -0400 Subject: [PATCH] build: use semantic release version compatible with node 18 semantic-release version 23 drops support for node 18 and requires a minimum of 20.8.1. This commit pins the version of semantic-release in the release workflow to version 22 until the platform upgrades to node 20 from node 18. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c4c58ec..375b0ede 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,4 +23,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }} - run: npx semantic-release + run: npx semantic-release@22