8000 Update dependencies and use Node 20 by joshmgross · Pull Request #425 · actions/github-script · GitHub
[go: up one dir, main page]

Skip to content

Update dependencies and use Node 20 #425

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Nov 13, 2023
Prev Previous commit
Next Next commit
Remove node-fetch from type
  • Loading branch information
joshmgross committed Nov 8, 2023
commit 84903f51828821af5d03d3884c6ba699a2d44d6e
2 changes: 0 additions & 2 deletions types/async-function.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ import { Context } from '@actions/github/lib/context';
import { GitHub } from '@actions/github/lib/utils';
import * as glob from '@actions/glob';
import * as io from '@actions/io';
import fetch from 'node-fetch';
export declare type AsyncFunctionArguments = {
context: Context;
core: typeof core;
github: InstanceType<typeof GitHub>;
exec: typeof exec;
glob: typeof glob;
io: typeof io;
fetch: typeof fetch;
require: NodeRequire;
__original_require__: NodeRequire;
};
Expand Down
0