Skip to content

Commit 463a8da

Browse files
committed
ci: Set node@20
1 parent 473c42a commit 463a8da

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ outputs:
2222
description: The ID of the comment that was created.
2323

2424
runs:
25-
using: 'node16'
25+
using: 'node20'
2626
main: './dist/lib/index.js'

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { context } from '@actions/github';
55
async function run() {
66
try {
77
const token = getInput('token');
8-
const octokit = new Octokit({ auth: `token ${token}`, request: { fetch } });
8+
const octokit = new Octokit({ auth: `token ${token}` });
99
const { owner, repo } = context.repo;
1010
const body = getInput('body');
1111

0 commit comments

Comments
 (0)