Skip to content

Commit

Permalink
change warning to notice
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanley committed Jun 14, 2024
1 parent 36697fc commit 983dbfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/inputs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getInput, warning } from '@actions/core'
import { getInput, notice } from '@actions/core'
import semver from 'semver'
export interface Inputs {
version: string | null
Expand All @@ -15,7 +15,7 @@ export function getInputs(): Inputs {
export function getVersionInput(name: string): string | null {
const version = getInput(name)
if (!version) {
warning('Using latest version of uv because no version is provided')
notice('No uv version specified. Using latest version')
return null
}

Expand Down

0 comments on commit 983dbfd

Please sign in to comment.