From b4246d0837f2bf7cf282cdda99a861ab229c8b5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rui=20Gonc=CC=A7alves?= Date: Sun, 11 Jun 2023 00:00:50 +0100 Subject: [PATCH] Remove sass from Ruby CI setup step --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 685667408..568a96ac0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,12 +79,12 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.1 + ruby-version: 3.2 - name: Install dependencies run: > sudo apt install libxslt-dev && - gem install sass jekyll:4.3.1 html-proofer:5.0.3 + gem install jekyll:4.3.2 html-proofer:5.0.7 - name: Build website run: sbt makeMicrosite @@ -114,10 +114,10 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.1 + ruby-version: 3.2 - name: Install dependencies - run: gem install sass jekyll:4.3.1 + run: gem install jekyll:4.3.2 - name: Build and compare website id: diff_website