You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/advanced-usage.md
+30-30Lines changed: 30 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ If there is a specific version of Python that you need and you don't want to wor
30
30
31
31
```yaml
32
32
steps:
33
-
- uses: actions/checkout@v3
33
+
- uses: actions/checkout@v4
34
34
- uses: actions/setup-python@v4
35
35
with:
36
36
python-version: '3.7.5'
@@ -44,7 +44,7 @@ You can specify **only a major and minor version** if you are okay with the most
44
44
45
45
```yaml
46
46
steps:
47
-
- uses: actions/checkout@v3
47
+
- uses: actions/checkout@v4
48
48
- uses: actions/setup-python@v4
49
49
with:
50
50
python-version: '3.7'
@@ -58,7 +58,7 @@ You can specify the version with **prerelease tag** to download and set up an ac
58
58
59
59
```yaml
60
60
steps:
61
-
- uses: actions/checkout@v3
61
+
- uses: actions/checkout@v4
62
62
- uses: actions/setup-python@v4
63
63
with:
64
64
python-version: '3.12.0-alpha.1'
@@ -69,7 +69,7 @@ It's also possible to use **x.y-dev syntax** to download and set up the latest p
69
69
70
70
```yaml
71
71
steps:
72
-
- uses: actions/checkout@v3
72
+
- uses: actions/checkout@v4
73
73
- uses: actions/setup-python@v4
74
74
with:
75
75
python-version: '3.12-dev'
@@ -82,7 +82,7 @@ You can also use several types of ranges that are specified in [semver](https://
82
82
83
83
```yaml
84
84
steps:
85
-
- uses: actions/checkout@v3
85
+
- uses: actions/checkout@v4
86
86
- uses: actions/setup-python@v4
87
87
with:
88
88
python-version: '>=3.9 <3.10'
@@ -93,7 +93,7 @@ steps:
93
93
94
94
```yaml
95
95
steps:
96
-
- uses: actions/checkout@v3
96
+
- uses: actions/checkout@v4
97
97
- uses: actions/setup-python@v4
98
98
with:
99
99
python-version: '3.12.0-alpha - 3.12.0'
@@ -104,7 +104,7 @@ steps:
104
104
105
105
```yaml
106
106
steps:
107
-
- uses: actions/checkout@v3
107
+
- uses: actions/checkout@v4
108
108
- uses: actions/setup-python@v4
109
109
with:
110
110
python-version: '3.x'
@@ -117,7 +117,7 @@ The version of PyPy should be specified in the format `pypy<python_version>[-v<p
117
117
The `-v<pypy_version>` parameter is optional and can be skipped. The latest PyPy version will be used in this case.
118
118
119
119
```
120
-
pypy3.8 or pypy-3.8 # the latest available version of PyPy that supports Python 3.8
120
+
pypy3.9 or pypy-3.9 # the latest available version of PyPy that supports Python 3.9
121
121
pypy2.7 or pypy-2.7 # the latest available version of PyPy that supports Python 2.7
122
122
pypy3.7-v7.3.3 or pypy-3.7-v7.3.3 # Python 3.7 and PyPy 7.3.3
123
123
pypy3.7-v7.x or pypy-3.7-v7.x # Python 3.7 and the latest available PyPy 7.x
@@ -137,7 +137,7 @@ jobs:
137
137
- 'pypy3.7' # the latest available version of PyPy that supports Python 3.7
0 commit comments