mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-04-05 15:15:18 -04:00
10 lines
463 B
TypeScript
10 lines
463 B
TypeScript
|
import * as core from '@actions/core'
|
||
|
|
||
|
export const version = core.getInput('version')
|
||
|
export const checkSum = core.getInput('checksum')
|
||
|
export const enableCache = core.getInput('enable-cache') === 'true'
|
||
|
export const cacheSuffix = core.getInput('cache-suffix') || ''
|
||
|
export const cacheLocalPath = core.getInput('cache-local-path')
|
||
|
export const githubToken = core.getInput('github-token')
|
||
|
export const cacheDependencyGlob = core.getInput('cache-dependency-glob')
|