Skip to content

Commit

Permalink
Replace install rust step in workflow
Browse files Browse the repository at this point in the history
The previous step used actions-rs which relies upon deprecated Node.js 12 actions. See: actions-rs/toolchain#219
  • Loading branch information
caolan authored Apr 21, 2023
1 parent 43e2bdb commit ec2cb2f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install rust with rustfmt and clippy
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- name: Install rust (stable)
run: curl https://sh.rustup.rs -sSf | sh -s -- -y

- name: Install Deno
uses: denoland/setup-deno@v1
Expand Down

0 comments on commit ec2cb2f

Please sign in to comment.