From 89ca8a8602e3b0d5062e19fa35f06fdec05a8461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 19 Oct 2024 12:06:32 +0200 Subject: [PATCH] Switch to Ubuntu 24.04 and Python 3.12 in CI --- .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 6a96f338..83c8744b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,14 +6,14 @@ on: jobs: check-scripts: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 name: Check scripts steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Install dependencies run: pip install weechat-script-lint - name: Check scripts