Skip to content

Commit

Permalink
Fix CI issues
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kivra-pauoli committed Sep 11, 2024
1 parent 3dcc681 commit 4fb51c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand All @@ -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
Expand Down

0 comments on commit 4fb51c2

Please # to comment.