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: 1 addition & 1 deletion .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

- name: Set up uv (Python)
if: inputs.language == 'python' || inputs.language == 'mixed'
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v7

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow or composite action Medium

Unpinned 3rd party Action 'Reusable Build' step
Uses Step
uses 'astral-sh/setup-uv' with ref 'v7', not a pinned commit hash
with:
enable-cache: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

- name: Set up uv (Python)
if: (inputs.language == 'python' || inputs.language == 'mixed') && (hashFiles(format('{0}/pyproject.toml', inputs.working-directory)) != '' || hashFiles(format('{0}/setup.py', inputs.working-directory)) != '' || hashFiles(format('{0}/requirements.txt', inputs.working-directory)) != '')
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v7

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow or composite action Medium

Unpinned 3rd party Action 'Reusable Lint' step
Uses Step
uses 'astral-sh/setup-uv' with ref 'v7', not a pinned commit hash
with:
# setup-uv fails when cache is enabled but a repo has no uv.lock.
# The reusable lint workflow must support mixed repos without Python deps.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

- name: Set up uv (Python)
if: inputs.language == 'python' || inputs.language == 'mixed'
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v7

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow or composite action Medium

Unpinned 3rd party Action 'Reusable Test' step
Uses Step
uses 'astral-sh/setup-uv' with ref 'v7', not a pinned commit hash
with:
enable-cache: true

Expand Down
Loading