From 393db275042c2d8f4b98487aba09a67b4434b11b Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Fri, 14 Nov 2025 09:42:02 -0500 Subject: [PATCH] Update GitHub Actions workflow for pull requests --- .github/workflows/on_pull_request.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/on_pull_request.yaml b/.github/workflows/on_pull_request.yaml index 5b00eec65..352e8a5ac 100644 --- a/.github/workflows/on_pull_request.yaml +++ b/.github/workflows/on_pull_request.yaml @@ -6,7 +6,7 @@ on: jobs: lint: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 strategy: fail-fast: false matrix: @@ -19,7 +19,7 @@ jobs: - name: setup-python uses: actions/setup-python@main with: - python-version: 3.10.6 + python-version: 3.12.3 cache: pip cache-dependency-path: requirements.txt - name: install-pylint @@ -27,7 +27,7 @@ jobs: python -m pip install --upgrade pip pip install pylint - name: pre-commit - uses: pre-commit-ci/lite-action@v1.0.2 + uses: pre-commit-ci/lite-action@v1.1.0 if: always() with: msg: apply code formatting and linting auto-fixes