From 82b8e4a969230971d2c4dd8873f4b85d4af24925 Mon Sep 17 00:00:00 2001 From: Padraic Slattery Date: Fri, 23 Jan 2026 14:33:10 +0100 Subject: [PATCH] chore: Update outdated GitHub Actions versions --- .github/workflows/python-lint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-lint.yml b/.github/workflows/python-lint.yml index 31dc296..caf3f64 100644 --- a/.github/workflows/python-lint.yml +++ b/.github/workflows/python-lint.yml @@ -14,13 +14,13 @@ jobs: fail-fast: false steps: - name: Git checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: 3.11 - name: Install poetry - uses: abatilo/actions-poetry@v3 + uses: abatilo/actions-poetry@v4 - name: Install linters run: poetry install --no-root --only linters - name: Run black