mirror of
https://github.com/actions/setup-python.git
synced 2025-06-28 13:43:47 +00:00
Remove old parameter that is deprecated
This commit is contained in:
parent
6654142a95
commit
28a6c1b915
3 changed files with 2 additions and 12 deletions
|
@ -21,10 +21,7 @@ const path = __importStar(require("path"));
|
|||
function run() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
try {
|
||||
let version = core.getInput('version');
|
||||
if (!version) {
|
||||
version = core.getInput('python-version');
|
||||
}
|
||||
let version = core.getInput('python-version');
|
||||
if (version) {
|
||||
const arch = core.getInput('architecture', { required: true });
|
||||
yield finder.findPythonVersion(version, arch);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue