From b268c778e1d8c6ea8d28337b08229b23b43bdb1c Mon Sep 17 00:00:00 2001 From: Denis Davidyuk Date: Wed, 2 Oct 2024 17:23:04 +1000 Subject: [PATCH] ci: fix erlang installation --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 987c5645d1..6c265206bb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,9 +5,9 @@ on: pull_request: jobs: main: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - - run: sudo apt install erlang + - run: sudo apt update && sudo apt install --no-install-recommends erlang - uses: actions/checkout@v4 with: fetch-depth: 100