Skip to content

Commit 4543376

Browse files
committed
Revert "Don't use setup-python action"
This reverts commit 47b28be.
1 parent ad7e7a5 commit 4543376

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/build-binaries.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
- uses: actions/checkout@v4
3131
with:
3232
submodules: recursive
33+
- uses: actions/setup-python@v5
34+
with:
35+
python-version: "3.13"
3336

3437
# Install Rust locally for non-Linux (Linux uses an internal docker
3538
# command to build with cibuildwheel which uses rustup install defined

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
3838
- uses: Swatinem/rust-cache@v2
3939
with:
4040
workspaces: temporalio/bridge -> target
41+
- uses: actions/setup-python@v5
42+
with:
43+
python-version: ${{ matrix.python }}
4144
- uses: arduino/setup-protoc@v3
4245
with:
4346
# TODO(cretz): Can upgrade proto when https://github.com/arduino/setup-protoc/issues/99 fixed

.github/workflows/run-bench.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
- uses: Swatinem/rust-cache@v2
3636
with:
3737
workspaces: temporalio/bridge -> target
38+
- uses: actions/setup-python@v5
39+
with:
40+
python-version: "3.13"
3841
- uses: arduino/setup-protoc@v3
3942
with:
4043
# TODO(cretz): Can upgrade proto when https://github.com/arduino/setup-protoc/issues/99 fixed

0 commit comments

Comments
 (0)