mirror of
https://github.com/actions/setup-python.git
synced 2025-02-23 15:20:30 +07:00
Use distinct cache key for free threaded Python
This commit is contained in:
parent
1ec1b0d2bd
commit
8f1f09d543
2
dist/setup/index.js
vendored
2
dist/setup/index.js
vendored
@ -91125,7 +91125,7 @@ function useCpythonVersion(version, architecture, updateEnvironment, checkLatest
|
||||
}
|
||||
core.setOutput('python-version', pythonVersion);
|
||||
core.setOutput('python-path', pythonPath);
|
||||
return { impl: 'CPython', version: installed };
|
||||
return { impl: 'CPython', version: pythonVersion };
|
||||
});
|
||||
}
|
||||
exports.useCpythonVersion = useCpythonVersion;
|
||||
|
@ -173,7 +173,7 @@ export async function useCpythonVersion(
|
||||
core.setOutput('python-version', pythonVersion);
|
||||
core.setOutput('python-path', pythonPath);
|
||||
|
||||
return {impl: 'CPython', version: installed};
|
||||
return {impl: 'CPython', version: pythonVersion};
|
||||
}
|
||||
|
||||
/* Desugar free threaded and dev versions */
|
||||
|
Loading…
Reference in New Issue
Block a user