From 67accd2fe806433151b8dc5a26003d6f08feed0b Mon Sep 17 00:00:00 2001 From: "ram.yamasani@reachlocal.com" Date: Mon, 27 Apr 2026 16:02:56 -0700 Subject: [PATCH 1/3] DBE-4341 Test --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 9dfd97c4a..70229630c 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,4 +1,4 @@ -import logging +import logging import subprocess import sys from datetime import datetime, timedelta From a103f0ed49ea378a4e761cbd7354a0dc3e889024 Mon Sep 17 00:00:00 2001 From: Mark Stafford Date: Thu, 30 Apr 2026 09:28:07 -0700 Subject: [PATCH 2/3] DBE-4341 Fix syntax error, Update versions --- .github/workflows/formatter.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/formatter.yml b/.github/workflows/formatter.yml index 9b8b8c3f2..9233c3636 100644 --- a/.github/workflows/formatter.yml +++ b/.github/workflows/formatter.yml @@ -11,27 +11,27 @@ jobs: runs-on: [ubuntu-latest] steps: - name: Checkout PR head - uses: actions/checkout@v3 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 if: github.event_name == 'pull_request' with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 if: github.event_name == 'workflow_dispatch' - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v46.0.1 + uses: tj-actions/changed-files@9426d40962ed5378910ee2e21d5f8c6fcbf2dd96 # v47.0.6 with: files: | **/*.py # This is used for forked PRs as write permissions are required to format files - name: Run and commit changes with `ruff format .` locally on your forked branch to fix errors if they appear - if: ${{ github.event.pull_request.head.repo.fork == true and steps.changed-files.outputs.all_changed_files != '' }} - uses: chartboost/ruff-action@v1 + if: ${{ github.event.pull_request.head.repo.fork == true && steps.changed-files.outputs.all_changed_files != '' }} + uses: chartboost/ruff-action@e18ae971ccee1b2d7bbef113930f00c670b78da4 # v1.0.0 id: ruff_formatter_suggestions with: args: format --diff --target-version py38 @@ -40,7 +40,7 @@ jobs: # This only runs if the PR is NOT from a forked repo - name: Format files using ruff if: ${{ github.event.pull_request.head.repo.fork == false }} - uses: chartboost/ruff-action@v1 + uses: chartboost/ruff-action@e18ae971ccee1b2d7bbef113930f00c670b78da4 # v1.0.0 id: ruff_formatter with: args: format From 212d099588afc4a066ad069f28b801cc40ad9418 Mon Sep 17 00:00:00 2001 From: Mark Stafford Date: Thu, 30 Apr 2026 09:34:22 -0700 Subject: [PATCH 3/3] DBE-4341 Remove trailing space --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 70229630c..9dfd97c4a 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,4 +1,4 @@ -import logging +import logging import subprocess import sys from datetime import datetime, timedelta