Skip to content

Commit

Permalink
ci: Set node@20
Browse files Browse the repository at this point in the history
  • Loading branch information
h7ml committed May 1, 2024
1 parent 473c42a commit 463a8da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ outputs:
description: The ID of the comment that was created.

runs:
using: 'node16'
using: 'node20'
main: './dist/lib/index.js'
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { context } from '@actions/github';
async function run() {
try {
const token = getInput('token');
const octokit = new Octokit({ auth: `token ${token}`, request: { fetch } });
const octokit = new Octokit({ auth: `token ${token}` });
const { owner, repo } = context.repo;
const body = getInput('body');

Expand Down

1 comment on commit 463a8da

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Website preview for commit ${GITHUB_SHA} at ${GITHUB_RUN_ATTEMPT}

Please sign in to comment.