Skip to content

Commit

Permalink
fix: update to nodejs 16 as nodejs 12 has been deprecated
Browse files Browse the repository at this point in the history
BREAKING CHANGE: make sure to have nodejs 16 installed on the runner
  • Loading branch information
Fresa committed Dec 1, 2022
1 parent 78160d2 commit 0df8d02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
with:
# Fetches entire history, so we can analyze commits since last tag
fetch-depth: 0
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 12
node-version: 16
- name: Test Fetching Artifact
run: |
GITHUB_ACTION_REPOSITORY=Fresa/release-notes-generator \
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ outputs:
release_notes:
description: 'Semantic release notes'
runs:
using: 'node12'
using: 'node16'
pre: 'fetch_artifact.js'
main: 'dist/index.js'
branding:
Expand Down

0 comments on commit 0df8d02

Please sign in to comment.