From 040335617e24ca38b1165d4bd3c319ec893964bc Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Fri, 26 Jan 2024 02:03:37 +0100 Subject: [PATCH] ci: Use latest Node.js LTS version to fix builds As a reference the docs for semantic-release were used: https://github.com/semantic-release/semantic-release/blob/master/docs/recipes/ci-configurations/github-actions.md --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 736ce2916..98ce67c57 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,12 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: ./gradlew build clean - - name: Setup semantic-release + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: "lts/*" + + - name: Install dependencies run: npm install - name: Release