diff --git a/dist/index.js b/dist/index.js index 64d9e71..53ba92a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -7209,7 +7209,7 @@ class GitAuthHelper { // eslint-disable-next-line github/no-then .catch(err => { // eslint-disable-next-line i18n-text/no-en - core.warning(`Failed to remove temporary home directory: ${err}`); + core.warning(`Failed to remove temporary checkout directory: ${err}`); }); } }); diff --git a/src/git-auth-helper.ts b/src/git-auth-helper.ts index 73a7a0b..3c31e4f 100644 --- a/src/git-auth-helper.ts +++ b/src/git-auth-helper.ts @@ -202,7 +202,7 @@ class GitAuthHelper { // eslint-disable-next-line github/no-then .catch(err => { // eslint-disable-next-line i18n-text/no-en - core.warning(`Failed to remove temporary home directory: ${err}`) + core.warning(`Failed to remove temporary checkout directory: ${err}`) }) } }