From 27ba05290c4cb65ab5d0235b83b49efdf13e7757 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 30 Mar 2025 07:11:34 +0200 Subject: [PATCH] Upgrade GitHub actions/checkout and actions/setup-python https://github.com/actions/checkout/releases https://github.com/actions/setup-python/releases --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9d630de6..6d1bfc06 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,20 +16,20 @@ jobs: os: [ubuntu-latest] # Include minimum py3 + maximum py3 + pypy3 on Windows include: - - { os: "windows-latest" , python-version: "3.9" } - - { os: "windows-latest" , python-version: "3.13" } - - { os: "windows-latest" , python-version: "pypy-3.9" } + - { os: "windows-latest", python-version: "3.9" } + - { os: "windows-latest", python-version: "3.13" } + - { os: "windows-latest", python-version: "pypy-3.9" } steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: python -m pip install -U tox + run: python -m pip install --upgrade tox - name: Tox tests run: tox -e py