Skip to content

Commit 799afeb

Browse files
author
IvanZosimov
committed
Fix action.yml file
1 parent 386e4ea commit 799afeb

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

action.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,19 @@ description: 'Set up a specific version of Python and add the command-line tools
44
author: 'GitHub'
55
inputs:
66
python-version:
7-
description: 'Version range or exact version of Python/PyPy to use, using SemVer's version range syntax.'
7+
description: "Version range or exact version of Python/PyPy to use, using SemVer's version range syntax."
88
python-version-file:
9-
description: 'File containing the Python version to use. Example: .python-version'
9+
description: "File containing the Python version to use. Example: .python-version"
1010
cache:
1111
description: 'Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv, poetry.'
1212
required: false
1313
architecture:
14-
description: 'The target architecture (x86, x64) of the Python/PyPy interpreter.'
14+
description: "The target architecture (x86, x64) of the Python/PyPy interpreter."
15+
check-latest:
16+
description: 'Set this option if you want the action to check for the latest available version that satisfies the version spec.'
17+
default: false
1518
token:
16-
description: 'Used to pull python distributions from actions/python-versions. Since there's a default, this is typically not supplied by the user.'
19+
description: "Used to pull python distributions from actions/python-versions. Since there's a default, this is typically not supplied by the user."
1720
default: ${{ github.token }}
1821
cache-dependency-path:
1922
description: 'Used to specify the path to dependency files. Supports wildcards or a list of file names for caching multiple dependencies.'
@@ -22,11 +25,11 @@ inputs:
2225
default: true
2326
outputs:
2427
python-version:
25-
description: 'The installed Python/PyPy version. Useful when given a version range as input.'
28+
description: "The installed Python/PyPy version. Useful when given a version range as input."
2629
cache-hit:
2730
description: 'A boolean value to indicate a cache entry was found'
2831
python-path:
29-
description: 'The absolute path to the Python/PyPy executable.'
32+
description: "The absolute path to the Python/PyPy executable."
3033
runs:
3134
using: 'node16'
3235
main: 'dist/setup/index.js'

0 commit comments

Comments
 (0)