From 3d1328fafb5664df3512423b42e20b936732364e Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 5 Dec 2021 17:36:46 +0200 Subject: [PATCH] workflow: Upgrade to setup-python@v2 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ecca594aa9..00722c01e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: rmdir panda3d-1.10.9 (cd thirdparty/darwin-libs-a && rm -rf rocket) - name: Set up Python 3.9 - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: 3.9 - name: Build Python 3.9 @@ -45,7 +45,7 @@ jobs: python -m pip install pytest PYTHONPATH=built LD_LIBRARY_PATH=built/lib DYLD_LIBRARY_PATH=built/lib python -m pytest - name: Set up Python 3.8 - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: 3.8 - name: Build Python 3.8 @@ -58,7 +58,7 @@ jobs: python -m pip install pytest PYTHONPATH=built LD_LIBRARY_PATH=built/lib DYLD_LIBRARY_PATH=built/lib python -m pytest - name: Set up Python 3.7 - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: 3.7 - name: Build Python 3.7