mirror of
https://github.com/gradle/actions.git
synced 2026-06-30 15:28:29 +00:00
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
import * as path from 'path'
|
|
import * as core from '@actions/core'
|
|
|
|
import * as validate from './validate'
|
|
import {handleMainActionError} from '../errors'
|
|
|
|
export async function run(): Promise<void> {
|
|
try {
|
|
const result = await validate.findInvalidWrapperJars(
|
|
path.resolve('.'),
|
|
+core.getInput('min-wrapper-count'),
|
|
core.getInput('allow-snapshots') === 'true',
|
|
core.getInput('allow-checksums').split(',')
|
|
)
|
|
if (result.isValid()) {
|
|
core.info(result.toDisplayString())
|
|
} else {
|
|
core.setFailed(
|
|
`Gradle Wrapper Validation Failed!\n See https://github.com/gradle/actions/blob/main/docs/wrapper-validation.md#reporting-failures\n${result.toDisplayString()}`
|
|
)
|
|
if (result.invalid.length > 0) {
|
|
core.setOutput('failed-wrapper', `${result.invalid.map(w => w.path).join('|')}`)
|
|
}
|
|
}
|
|
} catch (error) {
|
|
handleMainActionError(error)
|
|
}
|
|
}
|
|
|
|
run()
|