Prefer ‘release-candidate’ instead of ‘rc’

This makes the version alias match other places where we reference a release candidate version.
The 'rc' alias is still supported, but emits a deprecation warning.
This commit is contained in:
Daz DeBoer 2021-06-24 15:59:03 -07:00
parent 5423935c9b
commit b9684c0cf5
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
3 changed files with 12 additions and 7 deletions

View file

@ -19,6 +19,11 @@ export async function gradleVersion(version: string): Promise<string> {
case 'current':
return gradleCurrent()
case 'rc':
core.warning(
`Specifying gradle-version 'rc' has been deprecated. Use 'release-candidate' instead.`
)
return gradleReleaseCandidate()
case 'release-candidate':
return gradleReleaseCandidate()
case 'nightly':
return gradleNightly()