Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project (post v2.1.0) adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
### Fixed
- `slang`, `gitlab-ci`: Pass `--no-project` to `uv run` so the calling repository's `pyproject.toml` is no longer discovered and synced before running the action's scripts.

## 2.5.1 - 2026-06-09
### Added
Expand Down
2 changes: 1 addition & 1 deletion gitlab-ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ runs:
run: |
export SHA=${{ github.sha }}
if [ "$GITHUB_EVENT_NAME" == "pull_request" ]; then export SHA=${{ github.event.pull_request.head.sha }}; fi
uv run --with requests ${{ github.action_path }}/gitlab-ci.py $SHA ${{ inputs.token }} ${{ inputs.domain }} ${{ inputs.repo }} ${{ inputs.api-version }} ${{ inputs.retry-count }} ${{ inputs.retry-period }} ${{ inputs.poll-count }} ${{ inputs.poll-period }}
uv run --no-project --with requests ${{ github.action_path }}/gitlab-ci.py $SHA ${{ inputs.token }} ${{ inputs.domain }} ${{ inputs.repo }} ${{ inputs.api-version }} ${{ inputs.retry-count }} ${{ inputs.retry-period }} ${{ inputs.poll-count }} ${{ inputs.poll-period }}
4 changes: 2 additions & 2 deletions slang/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:

- name: Run slang
shell: bash
run: uv run --with "pyslang==${{ inputs.pyslang-version }}" ${{ github.action_path }}/run_slang.py "${{ inputs.slang-flags }}" slang_diags.json
run: uv run --no-project --with "pyslang==${{ inputs.pyslang-version }}" ${{ github.action_path }}/run_slang.py "${{ inputs.slang-flags }}" slang_diags.json

- name: Setup reviewdog
uses: reviewdog/action-setup@v1
Expand All @@ -58,7 +58,7 @@ runs:
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ inputs.token }}
run: |
uv run ${{ github.action_path }}/slang_to_rdjson.py slang_diags.json \
uv run --no-project ${{ github.action_path }}/slang_to_rdjson.py slang_diags.json \
| reviewdog -f=rdjson \
-name=${{ inputs.reviewdog-name }} \
-reporter=${{ inputs.reviewdog-reporter }} \
Expand Down