Skip to content

Commit cd582ca

Browse files
authored
Fix GitHub Actions integration test (#8013)
Fixes bug noted in #8012 GitHub upgraded the 3.12 Python version so the path changed!
1 parent f6fd849 commit cd582ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ jobs:
914914
steps:
915915
- uses: actions/setup-python@v5
916916
with:
917-
python-version: "3.12"
917+
python-version: "3.12.7"
918918

919919
- name: "Download binary"
920920
uses: actions/download-artifact@v4
@@ -948,13 +948,13 @@ jobs:
948948
- name: "Sync to the system Python"
949949
run: ./uv sync -v --python 3.12
950950
env:
951-
UV_PROJECT_ENVIRONMENT: "/opt/hostedtoolcache/Python/3.12.6/x64"
951+
UV_PROJECT_ENVIRONMENT: "/opt/hostedtoolcache/Python/3.12.7/x64"
952952

953953
- name: "Attempt to sync to the system Python with an incompatible version"
954954
run: |
955955
./uv sync -v --python 3.11 && { echo "ci: Error; should not succeed"; exit 1; } || { echo "ci: Ok; expected failure"; exit 0; }
956956
env:
957-
UV_PROJECT_ENVIRONMENT: "/opt/hostedtoolcache/Python/3.12.6/x64"
957+
UV_PROJECT_ENVIRONMENT: "/opt/hostedtoolcache/Python/3.12.7/x64"
958958

959959
- name: "Attempt to sync to a non-Python environment directory"
960960
run: |

0 commit comments

Comments
 (0)