8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e2c5c4 commit 4564d73Copy full SHA for 4564d73
README.md
@@ -12,8 +12,8 @@ See [action.yml](action.yml)
12
Basic:
13
```yaml
14
actions:
15
-- uses: actions/checkout@latest
16
-- uses: actions/setup-python@latest
+- uses: actions/checkout@master
+- uses: actions/setup-python@master
17
with:
18
version: 3.x // Version range or exact version of a Python version to use, using semvers version range syntax.
19
architecture: x64 // (x64 or x86)
@@ -29,9 +29,9 @@ jobs:
29
python: [ 2.x, 3.x, pypy3 ]
30
name: Python ${{ matrix.python }} sample
31
32
- - uses: actions/checkout@latest
+ - uses: actions/checkout@master
33
- name: Setup python
34
- uses: actions/setup-python@latest
+ uses: actions/setup-python@master
35
36
version: ${{ matrix.python }}
37
architecture: x64
0 commit comments