diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index a0a5a49..1f6338e 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -58,7 +58,7 @@ jobs: # Install bundled libs using minimum supported version even though you test it on other versions. - name: Use Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ env.PYTHON_VERSION }} @@ -74,7 +74,7 @@ jobs: # Now that the bundle is installed to target using minimum supported version # switch back the python we want to test with - name: Use Python ${{ matrix.python }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python }} diff --git a/.github/workflows/push-check.yml b/.github/workflows/push-check.yml index 842eb6f..be40685 100644 --- a/.github/workflows/push-check.yml +++ b/.github/workflows/push-check.yml @@ -63,7 +63,7 @@ jobs: # Install bundled libs using minimum supported version even though you test it on other versions. - name: Use Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ env.PYTHON_VERSION }} @@ -79,7 +79,7 @@ jobs: # Now that the bundle is installed to target using minimum supported version # switch back the python we want to test with - name: Use Python ${{ matrix.python }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python }}