Skip to content

Commit 1c30e79

Browse files
feat: upgrade uv to 0.9.3 and remove the HOME variable hack
1 parent bf368f6 commit 1c30e79

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/github_actions_linter.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Lint GitHub Actions workflows
22

3-
on: [ push ]
3+
on:
4+
- push
45

56
jobs:
67
actionlint:

action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ runs:
2626
run: |
2727
installation_directory="${{ github.action_path }}/.setup-python-amazon-linux/uv"
2828
echo "Installing uv.. installation_directory=${installation_directory}"
29-
uv_version="0.8.18"
30-
# HOME is set to foobar till this is resolved https://github.com/astral-sh/uv/issues/6965#issuecomment-2915796022
31-
curl -LsSf "https://github.com/astral-sh/uv/releases/download/${uv_version}/uv-installer.sh" | HOME="foobar" UV_UNMANAGED_INSTALL="${installation_directory}" bash --login
29+
uv_version="0.9.13"
30+
curl -LsSf "https://github.com/astral-sh/uv/releases/download/${uv_version}/uv-installer.sh" | UV_UNMANAGED_INSTALL="${installation_directory}" bash --login
3231
echo "${installation_directory}" >> "${GITHUB_PATH}"
3332
3433
- name: Find desired python version

0 commit comments

Comments
 (0)