diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 39ec2da9be..3f1d410511 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -14,9 +14,9 @@ jobs: python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10-dev', 'pypy3' ] steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Install Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} architecture: 'x64' @@ -28,7 +28,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: Cache pip - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }} diff --git a/.github/workflows/python-linux.yml b/.github/workflows/python-linux.yml index ea289c87c4..b57ecf0463 100644 --- a/.github/workflows/python-linux.yml +++ b/.github/workflows/python-linux.yml @@ -14,9 +14,9 @@ jobs: python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10-dev', 'pypy3' ] steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Install Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} architecture: 'x64' @@ -28,7 +28,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: Cache pip - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }} diff --git a/.github/workflows/python-macos.yml b/.github/workflows/python-macos.yml index 5ff6bae328..b5b5e07e7b 100644 --- a/.github/workflows/python-macos.yml +++ b/.github/workflows/python-macos.yml @@ -14,9 +14,9 @@ jobs: python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10-dev', 'pypy3' ] steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Install Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} architecture: 'x64' @@ -28,7 +28,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: Cache pip - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }} diff --git a/.github/workflows/python-windows.yml b/.github/workflows/python-windows.yml index b330c46258..0a8d68f231 100644 --- a/.github/workflows/python-windows.yml +++ b/.github/workflows/python-windows.yml @@ -14,9 +14,9 @@ jobs: python-version: [ '3.6', '3.7', '3.8', '3.9' ] steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Install Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} architecture: 'x64' @@ -28,7 +28,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: Cache pip - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }}