From aceb41f5e34154bb6bfe897cb31edfd10be370b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 17:20:27 +0000 Subject: [PATCH] Upgrade: bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/testing.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 1b522f8..dad2d04 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -10,7 +10,7 @@ jobs: name: Test run action (triggers warnings) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./ with: path: example @@ -21,7 +21,7 @@ jobs: name: Test run action (valid) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./ with: path: example_valid @@ -30,7 +30,7 @@ jobs: name: Test run action (valid with custom Flake8) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: pip install flake8==3.8.0 - uses: ./ with: @@ -40,7 +40,7 @@ jobs: name: Test run action (valid with Flake 3.8.0) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./ with: path: example_valid @@ -50,7 +50,7 @@ jobs: name: Test run action (valid with Python 3.9) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: python-version: 3.9 @@ -62,7 +62,7 @@ jobs: name: Test run action (plugins) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./ with: plugins: flake8-bugbear @@ -73,7 +73,7 @@ jobs: name: Test run action (classes) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./ with: plugins: flake8-bugbear @@ -86,7 +86,7 @@ jobs: name: Test run action (extra arguments) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./ with: path: example_length @@ -96,7 +96,7 @@ jobs: name: Test run action (working dir) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./ with: working_directory: example_valid @@ -105,7 +105,7 @@ jobs: name: Check for spelling errors runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: codespell-project/actions-codespell@master with: check_filenames: true