This repository was archived by the owner on Feb 12, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
actions/submit-signing-request Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import { taskVersion } from './version';
1111import { HelperArtifactDownload } from './helper-artifact-download' ;
1212import { Config } from './config' ;
1313import { SigningRequestStatusDto } from './dtos/signing-request-status' ;
14+ import { Agent } from 'https' ;
1415
1516// output variables
1617// signingRequestId - the id of the newly created signing request
@@ -222,6 +223,9 @@ export class Task {
222223
223224 // set user agent
224225 axios . defaults . headers . common [ 'User-Agent' ] = this . userAgent ;
226+ axios . defaults . httpsAgent = new Agent ( {
227+ keepAlive : true
228+ } )
225229
226230 // set token for all outgoing requests
227231 axios . defaults . headers . common . Authorization = `Bearer ${ this . helperInputOutput . signPathApiToken } `
You can’t perform that action at this time.
0 commit comments