Update README.md

This commit is contained in:
Danny McCormick 2019-07-23 15:45:57 -04:00 committed by GitHub
parent 9e2c5c4b72
commit 4564d739f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,8 +12,8 @@ See [action.yml](action.yml)
Basic: Basic:
```yaml ```yaml
actions: actions:
- uses: actions/checkout@latest - uses: actions/checkout@master
- uses: actions/setup-python@latest - uses: actions/setup-python@master
with: with:
version: 3.x // Version range or exact version of a Python version to use, using semvers version range syntax. version: 3.x // Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: x64 // (x64 or x86) architecture: x64 // (x64 or x86)
@ -29,9 +29,9 @@ jobs:
python: [ 2.x, 3.x, pypy3 ] python: [ 2.x, 3.x, pypy3 ]
name: Python ${{ matrix.python }} sample name: Python ${{ matrix.python }} sample
actions: actions:
- uses: actions/checkout@latest - uses: actions/checkout@master
- name: Setup python - name: Setup python
uses: actions/setup-python@latest uses: actions/setup-python@master
with: with:
version: ${{ matrix.python }} version: ${{ matrix.python }}
architecture: x64 architecture: x64