From 3c1ce6ef0b3a40945bd26f65d97d523498b0d023 Mon Sep 17 00:00:00 2001 From: Philip Sampaio Date: Sun, 6 Nov 2022 16:39:37 -0300 Subject: [PATCH] Remove Rust toolchain from CI (#436) This is because the dependency html5ever_elixir is now precompiled. This also updates action versions. --- .github/workflows/ci.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb326842..8ef163b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: erlef/setup-beam@v1.12 + - uses: erlef/setup-beam@v1.14 with: otp-version: ${{matrix.otp}} elixir-version: ${{matrix.elixir}} @@ -41,15 +41,8 @@ jobs: - name: Check for unused dependencies run: mix deps.unlock --check-unused - - name: Install Rust toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - if: matrix.parser == 'html5ever' - - name: Install CMake - uses: lukka/get-cmake@v3.21.2 + uses: lukka/get-cmake@v3.24.3 if: matrix.parser == 'fast_html' - name: Run test