We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3405f00 commit 3347376Copy full SHA for 3347376
.github/actions/setup-env/action.yaml
@@ -4,10 +4,10 @@ runs:
4
using: "composite"
5
steps:
6
- name: Install Rust
7
- uses: actions-rs/toolchain@v1
8
- with:
9
- toolchain: "1.69.0"
10
- override: true
+ shell: bash
+ run: |
+ sudo DEBIAN_FRONTEND=noninteractive apt-get install --yes --force-yes build-essential rustup
+ rustup update --no-self-update 1.89.0 && rustup default 1.89.0
11
12
- name: Install Tox and any other packages
13
shell: bash
@@ -20,4 +20,4 @@ runs:
20
run: |
21
mkdir -p $GITHUB_WORKSPACE/bin
22
$GITHUB_WORKSPACE/scripts/download_geth_linux.py --dir $GITHUB_WORKSPACE/bin
23
- echo $GITHUB_WORKSPACE/bin >> $GITHUB_PATH
+ echo $GITHUB_WORKSPACE/bin >> $GITHUB_PATH
0 commit comments