From 4e91b519f57f8753c75dca34a5f49e9d63609157 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 23:02:31 +0000 Subject: [PATCH] Upgrade: bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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..1ad6735 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@v6 - 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@v6 - 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@v6 - 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@v6 - 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@v6 - 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@v6 - 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@v6 - 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@v6 - 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@v6 - 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@v6 - uses: codespell-project/actions-codespell@master with: check_filenames: true