From da9300b071df21390bbdb5df6ca590c09b92723d Mon Sep 17 00:00:00 2001 From: Brian Smith <112954497+brian-smith-tcril@users.noreply.github.com> Date: Tue, 16 Jan 2024 11:17:34 -0500 Subject: [PATCH] fix(ci): specify semantic release version that is compatible with node 18 semantic-release [version 23](https://github.com/semantic-release/semantic-release/releases/tag/v23.0.0) includes the following breaking change: * support for node v18 has been dropped and the minimum for v20 is now v20.8.1 This pins the release workflow to version 22 until we move away 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 7b8ecd8bf..10f14f44a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: run: npm run build - name: Release to npm/Github - run: npx semantic-release + run: npx semantic-release@22 env: GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}