Skip to content
Merged
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/be-installation-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
version: "latest"
Comment on lines 33 to 36
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good update to use the latest version of the astral-sh/setup-uv action. Version 7 likely includes bug fixes and improvements over v6. Consider pinning to a specific version instead of using version: "latest" for better reproducibility and stability in CI/CD pipelines.

- name: Install uv
  uses: astral-sh/setup-uv@v7
  with:
    version: "0.4.0"  # Pin to specific version
    enable-cache: true

This ensures consistent behavior across different runs and environments.

enable-cache: true
Expand Down