diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da66aab..9ff8497 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: python-version: '3.14' - name: Run the tests - run: uv run --with-requirements requirements.txt tests/test_check_stale_wheels.py + run: uv run --with-requirements tools/requirements.txt tests/test_check_stale_wheels.py test: name: "test upload via action" diff --git a/.github/workflows/stale-wheels.yml b/.github/workflows/stale-wheels.yml index 332d6d4..59ebfae 100644 --- a/.github/workflows/stale-wheels.yml +++ b/.github/workflows/stale-wheels.yml @@ -37,7 +37,7 @@ jobs: ISSUE_OPENER_TOKEN: ${{ secrets.ISSUE_OPENER_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - uv run --with-requirements requirements.txt tools/check_stale_wheels.py ${{ inputs.dry_run && '--dry-run' || '' }} + uv run --with-requirements tools/requirements.txt tools/check_stale_wheels.py ${{ inputs.dry_run && '--dry-run' || '' }} report-failure: needs: [report] diff --git a/AGENTS.md b/AGENTS.md index ffb298c..14711c0 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -20,11 +20,11 @@ It is called as a job rather than used as a composite action because `ci.yml` ch Pin third-party actions to a full commit SHA with a `# vX.Y.Z` comment; Dependabot updates them monthly as a single group. -Run the Python tools with `uv run --with-requirements requirements.txt