File tree 1 file changed +5
-3
lines changed 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,13 @@ jobs:
14
14
python : ["3.10", "3.11", "3.12"]
15
15
16
16
steps :
17
- # Check out the repository by using the `actions/checkout@v2` GitHub tool
18
- # so the rest of the workflow can access it
17
+ # Check out the repository by using the latest `actions/checkout@main` GitHub tool
18
+ # (without specifying versions like `...@v2`, `...@v3` and so on)
19
+ # so the rest of the workflow can access it.
19
20
- uses : actions/checkout@main
20
21
- name : Setup Python
21
- # Get Python configured and installed in a build environment by using the `setup-python@v2` GitHub tool
22
+ # Get Python configured and installed in a build environment
23
+ # by using the latest `setup-python@main` GitHub tool.
22
24
uses : actions/setup-python@main
23
25
with :
24
26
# Create an environment for each of the Python versions listed in matrix: python
You can’t perform that action at this time.
0 commit comments