Skip to content

Commit 3dd0f34

Browse files
authored
Merge pull request #129 from probot/upgrade-node
Upgrade node
2 parents 95bbfa0 + 0399297 commit 3dd0f34

File tree

6 files changed

+2607
-1242
lines changed

6 files changed

+2607
-1242
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1313
- uses: actions/setup-node@v4
1414
with:
15-
node-version: 18
15+
node-version: 20
1616
cache: npm
1717
- run: npm ci
1818
- uses: aws-actions/setup-sam@v2

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
- uses: actions/setup-node@v4
1616
with:
1717
cache: npm
18-
node-version: 18
18+
node-version: 20
1919
- run: npm ci
2020
- run: npm test

app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @param {import('probot').Probot} app
33
*/
44
module.exports = (app) => {
5-
app.log("Yay! The app was loaded!");
5+
console.log("Yay! The app was loaded!");
66

77
app.on("issues.opened", async (context) => {
88
return context.octokit.issues.createComment(

0 commit comments

Comments
 (0)