From 82092b2562c1873bd53b755c5531d326c9e56be2 Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Sun, 16 Jun 2024 22:41:43 +0200 Subject: [PATCH] ci(release) use node LTS and unpin semantic-release --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7763afa..7e10bea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 16 + node-version: lts/* cache: npm - uses: actions/cache@v4 with: @@ -20,7 +20,7 @@ jobs: restore-keys: | ${{ runner.os }}-node- - run: npm ci - - run: npx semantic-release@19 + - run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}