Skip to content

Commit 3347376

Browse files
committed
Update Rust toolchain since there's no libcst wheel for pypy
`actions-rs` has been archived and is no longer the recommended way to install packages. Instead, I'm using the Ubuntu-provided `rustup`.
1 parent 3405f00 commit 3347376

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/actions/setup-env/action.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ runs:
44
using: "composite"
55
steps:
66
- name: Install Rust
7-
uses: actions-rs/toolchain@v1
8-
with:
9-
toolchain: "1.69.0"
10-
override: true
7+
shell: bash
8+
run: |
9+
sudo DEBIAN_FRONTEND=noninteractive apt-get install --yes --force-yes build-essential rustup
10+
rustup update --no-self-update 1.89.0 && rustup default 1.89.0
1111
1212
- name: Install Tox and any other packages
1313
shell: bash
@@ -20,4 +20,4 @@ runs:
2020
run: |
2121
mkdir -p $GITHUB_WORKSPACE/bin
2222
$GITHUB_WORKSPACE/scripts/download_geth_linux.py --dir $GITHUB_WORKSPACE/bin
23-
echo $GITHUB_WORKSPACE/bin >> $GITHUB_PATH
23+
echo $GITHUB_WORKSPACE/bin >> $GITHUB_PATH

0 commit comments

Comments
 (0)