Add the @actions/tool-cache package

Signed-off-by: Patricio Pérez <73832292+patricioperezv@users.noreply.github.com>
This commit is contained in:
Patricio Pérez 2024-01-12 06:47:30 +00:00
parent 60a0d83039
commit 5376815923
7 changed files with 2701 additions and 2 deletions

View file

@ -5,6 +5,7 @@ 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 * as tc from '@actions/tool-cache';
export declare type AsyncFunctionArguments = {
context: Context;
core: typeof core;
@ -12,6 +13,7 @@ export declare type AsyncFunctionArguments = {
exec: typeof exec;
glob: typeof glob;
io: typeof io;
tc: typeof tc;
require: NodeRequire;
__original_require__: NodeRequire;
};