From ca7c0ed7d3198024bfdb093d961915eb027ec7d2 Mon Sep 17 00:00:00 2001 From: Maxime Curioni Date: Wed, 4 Sep 2024 14:46:42 -0600 Subject: [PATCH] Attempt to fix Github Actions by allowing unsecure Node.js version --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 71b4c72..6ce604e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,10 +9,10 @@ jobs: matrix: otp: [21.3, 22.0.7, 22.3, 23.0.4, 23.2.7.0, 24.0] container: - image: erlang:${{ matrix.otp }} + image: erlang:${{ matrix.otp }}-alpine steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v3 - name: Compile run: rebar3 compile - name: Tests