mirror of
https://gitea.com/actions/setup-java.git
synced 2026-08-05 02:31:18 +00:00
Deprecate setup-java v2 (#1196)
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
name: 'Setup Java JDK'
|
name: 'Setup Java JDK'
|
||||||
description: 'Set up a specific version of the Java JDK and add the
|
description: 'Set up a specific version of the Java JDK and add the
|
||||||
command-line tools to the PATH'
|
command-line tools to the PATH'
|
||||||
|
deprecationMessage: 'setup-java v2 is deprecated and will no longer receive updates. Please migrate to actions/setup-java@v5.'
|
||||||
author: 'GitHub'
|
author: 'GitHub'
|
||||||
inputs:
|
inputs:
|
||||||
java-version:
|
java-version:
|
||||||
|
|||||||
Vendored
+2
@@ -85156,9 +85156,11 @@ const constants = __importStar(__webpack_require__(694));
|
|||||||
const cache_1 = __webpack_require__(319);
|
const cache_1 = __webpack_require__(319);
|
||||||
const path = __importStar(__webpack_require__(622));
|
const path = __importStar(__webpack_require__(622));
|
||||||
const distribution_factory_1 = __webpack_require__(729);
|
const distribution_factory_1 = __webpack_require__(729);
|
||||||
|
const DEPRECATION_WARNING = 'setup-java v2 is deprecated and will no longer receive updates. Please migrate to actions/setup-java@v5.';
|
||||||
function run() {
|
function run() {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
try {
|
try {
|
||||||
|
core.warning(DEPRECATION_WARNING);
|
||||||
const version = core.getInput(constants.INPUT_JAVA_VERSION, { required: true });
|
const version = core.getInput(constants.INPUT_JAVA_VERSION, { required: true });
|
||||||
const distributionName = core.getInput(constants.INPUT_DISTRIBUTION, { required: true });
|
const distributionName = core.getInput(constants.INPUT_DISTRIBUTION, { required: true });
|
||||||
const architecture = core.getInput(constants.INPUT_ARCHITECTURE);
|
const architecture = core.getInput(constants.INPUT_ARCHITECTURE);
|
||||||
|
|||||||
@@ -7,8 +7,13 @@ import * as path from 'path';
|
|||||||
import { getJavaDistribution } from './distributions/distribution-factory';
|
import { getJavaDistribution } from './distributions/distribution-factory';
|
||||||
import { JavaInstallerOptions } from './distributions/base-models';
|
import { JavaInstallerOptions } from './distributions/base-models';
|
||||||
|
|
||||||
|
const DEPRECATION_WARNING =
|
||||||
|
'setup-java v2 is deprecated and will no longer receive updates. Please migrate to actions/setup-java@v5.';
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
try {
|
try {
|
||||||
|
core.warning(DEPRECATION_WARNING);
|
||||||
|
|
||||||
const version = core.getInput(constants.INPUT_JAVA_VERSION, { required: true });
|
const version = core.getInput(constants.INPUT_JAVA_VERSION, { required: true });
|
||||||
const distributionName = core.getInput(constants.INPUT_DISTRIBUTION, { required: true });
|
const distributionName = core.getInput(constants.INPUT_DISTRIBUTION, { required: true });
|
||||||
const architecture = core.getInput(constants.INPUT_ARCHITECTURE);
|
const architecture = core.getInput(constants.INPUT_ARCHITECTURE);
|
||||||
|
|||||||
Reference in New Issue
Block a user