Pass to warning uncaught exceptions (#359)

This commit is contained in:
Dmitry Shibanov
2021-12-28 12:25:43 +03:00
committed by GitHub
parent 9a74eb4e64
commit 1f8c6b94b2
2 changed files with 15 additions and 0 deletions

View File

@ -4,6 +4,14 @@ import fs from 'fs';
import {State} from './constants';
import {getCacheDirectoryPath, getPackageManagerInfo} from './cache-utils';
// Catch and log any unhandled exceptions. These exceptions can leak out of the uploadChunk method in
// @actions/toolkit when a failed upload closes the file descriptor causing any in-process reads to
// throw an uncaught exception. Instead of failing this action, just warn.
process.on('uncaughtException', e => {
const warningPrefix = '[warning]';
core.info(`${warningPrefix}${e.message}`);
});
export async function run() {
try {
const cacheLock = core.getInput('cache');