Skip to content

Commit

Permalink
remove useless notice when not found in cache
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbasPL committed Nov 30, 2024
1 parent 5a4ba7e commit 51e46e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28310,7 +28310,7 @@ async function download() {
core.addPath(cachePath);
return;
} else {
core.notice(`Not found in cache`);
core.info(`Not found in cache`);
}

const url = getUrl(version, osPlatform, osArch);
Expand Down Expand Up @@ -28351,6 +28351,7 @@ async function run() {

module.exports = {run}


/***/ }),

/***/ 2613:
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function download() {
core.addPath(cachePath);
return;
} else {
core.notice(`Not found in cache`);
core.info(`Not found in cache`);
}

const url = getUrl(version, osPlatform, osArch);
Expand Down Expand Up @@ -78,4 +78,4 @@ async function run() {
}
}

module.exports = {run}
module.exports = {run}

0 comments on commit 51e46e6

Please sign in to comment.