diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d0f1694..04a36909 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: env: TOXENV: py steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - if: ${{ matrix.python-version == '2.7' }} run: | sudo apt-get install python-is-python2 @@ -70,7 +70,7 @@ jobs: name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} - if: ${{ matrix.python-version != '2.7' }} name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} allow-prereleases: true diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d5be851a..617cbaff 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,9 +10,9 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.13' - name: Install dependencies