From 533cbc2e06dd5015fcc828555d652a868761c990 Mon Sep 17 00:00:00 2001 From: Matthew McPherrin Date: Thu, 17 Oct 2024 15:00:59 -0400 Subject: [PATCH] Update versions of eveyrthing in the workflow --- .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 7d43fdc..fd00181 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,21 +5,21 @@ on: [push] jobs: lint: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.9 - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - name: Set up Python 3.14 + uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: 3.14 - name: Install Linting Tools run: | python -m pip install --upgrade pip - pip install --user pylint==2.6.0 - pip install --user black~=22.3 - pip install --user flake8~=4.0 + pip install --user pylint==3.3.1 + pip install --user black~=24.10 + pip install --user flake8~=7.1 - name: Analysing the code with pylint run: |