1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-06-09 12:52:20 +02:00

Trim trailing newlines from resolvedPyPyVersion (#610)

Fixes #609
This commit is contained in:
Kurt McKee 2023-02-20 04:28:16 -06:00 committed by GitHub
parent 3faddefb4c
commit 869e769ec8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -233,7 +233,7 @@ export function findRelease(
return {
foundAsset,
resolvedPythonVersion: foundRelease.python_version,
resolvedPyPyVersion: foundRelease.pypy_version
resolvedPyPyVersion: foundRelease.pypy_version.trim()
};
}