From 70e57edf6cf938258f68b5eaa86a0e6e1c579729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Abecasis?= Date: Fri, 2 Feb 2024 13:30:03 +0000 Subject: [PATCH] chore: upgrade python to 3.11 and some GHAs to the latest There's a couple of unmaintained actions in use here. Replacing them will require a closer look. --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb6f4f1..9a390b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,11 +6,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Setup Python 3.7 - uses: actions/setup-python@v1 + - uses: actions/checkout@v4 + - name: Setup Python 3.11 + uses: actions/setup-python@v5 with: - python-version: '3.7' + python-version: '3.11' - name: Install dependencies run: make deps-test - name: Lint @@ -25,11 +25,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Setup Python 3.7 - uses: actions/setup-python@v1 + - uses: actions/checkout@v4 + - name: Setup Python 3.11 + uses: actions/setup-python@v5 with: - python-version: '3.7' + python-version: '3.11' - name: Install packaging dependencies run: make deps-dist - id: package