From 230381cd37cd589c635ee37dde1165a44f68c329 Mon Sep 17 00:00:00 2001 From: Brian Smith <112954497+brian-smith-tcril@users.noreply.github.com> Date: Tue, 16 Jan 2024 12:51:09 -0500 Subject: [PATCH] build: specify semantic release version that is compatible with node 18 (#639) 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 93b51f085..eab97a0d3 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 }}