From 8c35d1153ff635c1227ce91c316e7e0cc6c78012 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 02:37:44 +0000 Subject: [PATCH 1/2] Bump davidslusser/actions_python_ruff from 1.0.1 to 1.0.3 Bumps [davidslusser/actions_python_ruff](https://github.com/davidslusser/actions_python_ruff) from 1.0.1 to 1.0.3. - [Release notes](https://github.com/davidslusser/actions_python_ruff/releases) - [Commits](https://github.com/davidslusser/actions_python_ruff/compare/v1.0.1...v1.0.3) --- updated-dependencies: - dependency-name: davidslusser/actions_python_ruff dependency-version: 1.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/pull_request_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request_tests.yml b/.github/workflows/pull_request_tests.yml index ec72494c..e8c9ccec 100644 --- a/.github/workflows/pull_request_tests.yml +++ b/.github/workflows/pull_request_tests.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest name: "ruff" steps: - - uses: davidslusser/actions_python_ruff@v1.0.1 + - uses: davidslusser/actions_python_ruff@v1.0.3 with: src: "check src" pip_install_command: "pip install -e .[dev]" From 9fed981ad75bb355599a38c2b90ab5ac3a2aec72 Mon Sep 17 00:00:00 2001 From: Aadil Latif Date: Thu, 5 Mar 2026 19:45:54 -0700 Subject: [PATCH 2/2] ci: fix ruff action invocation --- .github/workflows/pull_request_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request_tests.yml b/.github/workflows/pull_request_tests.yml index e8c9ccec..6da579c9 100644 --- a/.github/workflows/pull_request_tests.yml +++ b/.github/workflows/pull_request_tests.yml @@ -35,6 +35,6 @@ jobs: steps: - uses: davidslusser/actions_python_ruff@v1.0.3 with: - src: "check src" + command: "ruff check src" pip_install_command: "pip install -e .[dev]" python_version: "3.13"