mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 10:10:17 +08:00
For more information see https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ This change bumps a bunch of the internal actions packages. Note that the only required version change is `actions/core` to 1.10.0. The others are not required, but seem like a reasonable idea. It also changes all of the workflows that use `set-output`.
13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
import { HttpClient } from '@actions/http-client';
|
|
/**
|
|
* Used for managing http clients during either upload or download
|
|
*/
|
|
export declare class HttpManager {
|
|
private clients;
|
|
private userAgent;
|
|
constructor(clientCount: number, userAgent: string);
|
|
getClient(index: number): HttpClient;
|
|
disposeAndReplaceClient(index: number): void;
|
|
disposeAndReplaceAllClients(): void;
|
|
}
|