diff options
| author | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2020-01-14 12:45:18 +0100 |
|---|---|---|
| committer | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2020-01-20 02:59:50 +0100 |
| commit | 548adff948383937d94ca823ca6c1367ec331b62 (patch) | |
| tree | 4f111f0b44f4f08da6a8ae563e2604b2289b2bad /.github/workflows/python-tests.yml | |
| parent | 7cd8b4966a6e7186ff45fe1f1c09a58f8a678113 (diff) | |
| download | python-setuptools-git-548adff948383937d94ca823ca6c1367ec331b62.tar.gz | |
Use `python-version` in setup-python action
Before this change, a deprecated `version` arg was used.
Diffstat (limited to '.github/workflows/python-tests.yml')
| -rw-r--r-- | .github/workflows/python-tests.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 8941b359..a1e3d95b 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -32,7 +32,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: - version: ${{ matrix.python-version }} + python-version: ${{ matrix.python-version }} - name: Upgrade pip/setuptools/wheel run: >- python |
