From d4302ea739164636aa653eb229ab1f1462c38c13 Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Fri, 26 Jan 2024 18:07:11 +0100 Subject: [PATCH 1/3] CI: upgrade actions/checkout to v4. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2598609..9dcda60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest container: ${{matrix.os}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: install deps run: | printf 'Apt::Install-Recommends "false";\n' | tee -a /etc/apt/apt.conf @@ -51,7 +51,7 @@ jobs: - python-version: '3.12-dev' os: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: set up Python ${{matrix.python-version}} uses: actions/setup-python@v4 with: From 5272838861b274f12eb6fd6880b6971a6e06affc Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Fri, 26 Jan 2024 18:08:33 +0100 Subject: [PATCH 2/3] CI: upgrade actions/setup-python to v5. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dcda60..eb00354 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: steps: - 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: run pydiatra From 0a95bab3dcd1cf9eb43468f6cd0fe029724e239b Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Fri, 26 Jan 2024 18:19:24 +0100 Subject: [PATCH 3/3] CI: remove -dev suffix from Python 3.12. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb00354..c1c4c2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: os: ubuntu-22.04 - python-version: '3.11' os: ubuntu-22.04 - - python-version: '3.12-dev' + - python-version: '3.12' os: ubuntu-22.04 steps: - uses: actions/checkout@v4