8000 Update from v1 to v2 · Kondaly/setup-python@6c4e46d · GitHub
[go: up one dir, main page]

Skip to content

Commit 6c4e46d

Browse files
authored
Update from v1 to v2
1 parent 824e8a7 commit 6c4e46d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# setup-python
1+
# setup-python V2
22

33
<p align="left">
44
<a href="https://github.com/actions/setup-python"><img alt="GitHub Actions status" src="https://github.com/actions/setup-python/workflows/Main%20workflow/badge.svg"></a>
@@ -25,7 +25,7 @@ Basic:
2525
```yaml
2626
steps:
2727
- uses: actions/checkout@v2
28-
- uses: actions/setup-python@v1
28+
- uses: actions/setup-python@v2
2929
with:
3030
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax
3131
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@v2
4646
- name: Setup python
47-
uses: actions/setup-python@v1
47+
uses: actions/setup-python@v2
4848
with:
4949
python-version: ${{ matrix.python-version }}
5050
architecture: x64
@@ -68,7 +68,7 @@ jobs:
6868
steps:
6969
- uses: actions/checkout@v2
7070
- name: Set up Python
71-
uses: actions/setup-python@v1
71+
uses: actions/setup-python@v2
7272
with:
7373
python-version: ${{ matrix.python-version }}
7474
- name: Display Python version
@@ -85,7 +85,7 @@ jobs:
8585
python-version: [3.5, 3.6, 3.7.4, 3.8]
8686
steps:
8787
- uses: actions/checkout@v2
88-
- uses: actions/setup-python@v1
88+
- uses: actions/setup-python@v2
8989
with:
9090
python-version: ${{ matrix.python }}
9191
- run: python my_script.py

0 commit comments

Comments
 (0)
0