Skip to content

Commit bd01e18

Browse files
authored
Do not warn when version not in manifest-file (#462)
This will spam the GitHub summary with warnings as soon as a new version is released and no new setup-uv version containing this version in the distributed manifest-file is released Closes: #461
1 parent c6a5eba commit bd01e18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/setup/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/download/download-version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export async function downloadVersionFromManifest(
6464
platform,
6565
);
6666
if (!downloadUrl) {
67-
core.warning(
67+
core.info(
6868
`manifest-file does not contain version ${version}, arch ${arch}, platform ${platform}. Falling back to GitHub releases.`,
6969
);
7070
return await downloadVersionFromGithub(

0 commit comments

Comments
 (0)