From 4fb51c2992a0ea3f70d8c354a0cc281168d591be Mon Sep 17 00:00:00 2001 From: "Paulo F. Oliveira" Date: Thu, 12 Sep 2024 00:58:48 +0200 Subject: [PATCH] Fix CI issues The Ubuntu image started failing (most likely because we're using -latest on the CI matrix) We choose a specific version of `rebar3` that works with the Ubuntu image (which is OTP 24) since that one's not been updated recently --- .github/workflows/workflow.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 518ce80..3320fe3 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Install system packages on Ubuntu if: ${{ runner.os == 'Linux' }} - run: sudo apt-get install curl erlang + run: sudo apt-get -y update && sudo apt-get -y install curl erlang - name: Install system packages on macOS if: ${{ runner.os == 'macOS' }} @@ -38,6 +38,7 @@ jobs: uses: asdf-vm/actions/plugin-test@v1 with: command: rebar3 --version + version: 3.22.0 lint: runs-on: ubuntu-latest