diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index b815346c9..0b834188b 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: # Pin the interpreter -- the step used to take whatever the runner # image shipped -- and cache the wheels. Sphinx and its extensions diff --git a/.github/workflows/performance-benchmark.yml b/.github/workflows/performance-benchmark.yml index c00519a3e..fbf2022a8 100644 --- a/.github/workflows/performance-benchmark.yml +++ b/.github/workflows/performance-benchmark.yml @@ -35,7 +35,7 @@ jobs: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: "3.11" diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 65f25175b..7d1926a50 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -39,7 +39,7 @@ jobs: with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: ${{ env.PYTHON_LATEST }} cache: pip @@ -137,7 +137,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} # Required by the 3.15 rows: a bare `3.15` matches stable releases @@ -208,7 +208,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} cache: pip @@ -270,7 +270,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: pypy3.11 cache: pip @@ -311,7 +311,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: '3.12' cache: pip @@ -389,7 +389,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: '3.12' cache: pip @@ -463,7 +463,7 @@ jobs: name: Checkout source repository with: fetch-depth: 0 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: # Pin the interpreter (the step previously took whatever the runner # image shipped) so the pip cache below has a stable key.