Skip to content

Commit

Permalink
FIXME CI: Avoid using abandoned actions-rs/toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
BenWiederhake committed Jun 24, 2023
1 parent 69dfb74 commit 81cca90
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
python-version: '3.x'
# Intentionally don't do system updates – let's try to keep this small and fast, if at all possible.
- name: Install latest stable rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
# Can't use actions-rs/toolchain@v1: It's outdated (three years old), and uses the about-to-be-removed "set-output" hack to output to Github Actions
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/install_rust.sh
chmod +x /tmp/install_rust.sh
/tmp/install_rust.sh -y
- name: Install black
# The setup-python action set default python to python3.x. Note that we are not using system python here.
run: |
Expand Down

0 comments on commit 81cca90

Please sign in to comment.