Skip to content

Commit 9048315

Browse files
Upgrade NodeJS to 20.6.1 (#54)
* upgrade NodeJS to 18.17.1 * upgrade NodeJS to 20.6.1 * Fix tool-versions * Fix build by upgrading all deps * Adjust octokit usage for breaking changes from v5 * Build * Fix call to pagiante * Ensure CI will crash if build process crashes * Fill out changelog --------- Co-authored-by: Angelika Tyborska <[email protected]>
1 parent 4cb1298 commit 9048315

File tree

9 files changed

+10831
-14034
lines changed

9 files changed

+10831
-14034
lines changed

.github/workflows/test.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup NodeJS
1414
uses: actions/setup-node@v4
1515
with:
16-
node-version: 16.x
16+
node-version: 20.x
1717

1818
- name: Install project dependencies
1919
run: npm install --also=dev
@@ -23,3 +23,6 @@ jobs:
2323

2424
- name: Run linter
2525
run: npm run lint
26+
27+
- name: Run build
28+
run: npm run build

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 16.18.1
1+
nodejs 20.6.1

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Bump Node version to 20.
6+
57
## 1.5.0 (2023-09-14)
68

79
- Add support for using a remote config-file (stored in another GitHub repository).

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ inputs:
1414
description: 'A string with a JSON that holds variables that will be used when rendering the Mustache templates'
1515
required: false
1616
runs:
17-
using: 'node16'
17+
using: 'node20'
1818
main: 'dist/index.js'
1919
branding:
2020
icon: 'message-circle'

0 commit comments

Comments
 (0)