Skip to content

Commit

Permalink
Update Node version in GH Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JReinhold committed Mar 18, 2024
1 parent 9955a2a commit fa7ee7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -7,15 +7,15 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Prepare repository
run: git fetch --unshallow --tags

- name: Use Node.js 16.x
uses: actions/setup-node@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 18.x

- name: Install dependencies
run: npm install --ignore-scripts
Expand Down

0 comments on commit fa7ee7c

Please sign in to comment.