Skip to content

Commit 25f1040

Browse files
committed
Fix incorrect script path in GitHub Actions workflow
1 parent bb2309b commit 25f1040

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/reusable-check-python-package-versions.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
ref: ${{ inputs.before_commit }}
4444

4545
- name: Capture package versions before change
46-
run: uv run python scripts/package-versions.py collect > /tmp/package-versions-before.json
46+
run: uv run python ./.github/workflows/scripts/package-versions.py collect > /tmp/package-versions-before.json
4747

4848
- name: Check out code after change
4949
uses: actions/checkout@v4
5050
with:
5151
ref: ${{ inputs.after_commit }}
5252

5353
- name: Capture package versions after change
54-
run: uv run python scripts/package-versions.py collect > /tmp/package-versions-after.json
54+
run: uv run python ./.github/workflows/scripts/package-versions.py collect > /tmp/package-versions-after.json
5555

5656
- name: Compare package versions before and after change
5757
run: |

0 commit comments

Comments
 (0)