From 4c334858b2900b980bb1bdcde4490ab628105e87 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 16 Jan 2024 23:00:41 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .gitea/workflows/linting.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/linting.yaml b/.gitea/workflows/linting.yaml index 06fceab..21769a5 100644 --- a/.gitea/workflows/linting.yaml +++ b/.gitea/workflows/linting.yaml @@ -14,7 +14,7 @@ jobs: pylint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install dependencies uses: ./.gitea/actions/poetrybuild - name: Lint with pylint @@ -23,7 +23,7 @@ jobs: formatting: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install dependencies uses: ./.gitea/actions/poetrybuild - name: Test formatting with isort and black @@ -34,7 +34,7 @@ jobs: mypy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install dependencies uses: ./.gitea/actions/poetrybuild - name: Test typing with mypy