Skip to content

Commit b9d9588

Browse files
Add typings for actions/setup-python@v7 (#178)
## actions/setup-python@v7 Based on v6 typings, adjusted for the following change: - Removed `pip-install` input: This input was present in v6 but is no longer present in v7's `action.yml`. All other inputs and outputs remain identical to v6. Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 3aa289a commit b9d9588

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See https://github.com/typesafegithub/github-actions-typing
2+
inputs:
3+
python-version:
4+
type: string
5+
python-version-file:
6+
type: string
7+
cache:
8+
type: enum
9+
name: PackageManager
10+
allowed-values:
11+
- pip
12+
- pipenv
13+
- poetry
14+
architecture:
15+
type: enum
16+
allowed-values:
17+
- x64
18+
- x86
19+
check-latest:
20+
type: boolean
21+
token:
22+
type: string
23+
cache-dependency-path:
24+
type: list
25+
separator: "\n"
26+
list-item:
27+
type: string
28+
update-environment:
29+
type: boolean
30+
allow-prereleases:
31+
type: boolean
32+
freethreaded:
33+
type: boolean
34+
pip-version:
35+
type: string
36+
outputs:
37+
python-version:
38+
type: string
39+
cache-hit:
40+
type: boolean
41+
python-path:
42+
type: string

0 commit comments

Comments
 (0)