From f7a74a685d78d98203fa991fc19a5d1fda57c212 Mon Sep 17 00:00:00 2001 From: Evgeni Burovski Date: Mon, 30 Dec 2024 00:01:34 +0200 Subject: [PATCH] CI: update python versions for lint.yml (#332) --- .github/workflows/lint.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ded906e6..5e8f375a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,15 +6,11 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.8, 3.9] - steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} + python-version: "3.10" - name: Run pre-commit hook uses: pre-commit/action@v2.0.3