diff --git a/lib/upload-lib.js b/lib/upload-lib.js index 62d49a065..668f5f8cc 100644 --- a/lib/upload-lib.js +++ b/lib/upload-lib.js @@ -55,7 +55,7 @@ function combineSarifFiles(sarifFiles) { } exports.combineSarifFiles = combineSarifFiles; // Upload the given payload. -// If the request fails then this will be retry a small number of times. +// If the request fails then this will retry a small number of times. async function uploadPayload(payload) { core.info('Uploading results'); const githubToken = core.getInput('token'); diff --git a/src/upload-lib.ts b/src/upload-lib.ts index c9b69dfcb..18d43f861 100644 --- a/src/upload-lib.ts +++ b/src/upload-lib.ts @@ -48,7 +48,7 @@ export function combineSarifFiles(sarifFiles: string[]): string { } // Upload the given payload. -// If the request fails then this will be retry a small number of times. +// If the request fails then this will retry a small number of times. async function uploadPayload(payload) { core.info('Uploading results');