From f3255b05dd4014ab0fa576980b412c8863a27255 Mon Sep 17 00:00:00 2001 From: Maxime Curioni Date: Wed, 4 Sep 2024 14:38:13 -0600 Subject: [PATCH] Attempt to fix Github Actions by not using Alpine Erlang image --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ffe105f..71b4c72 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: matrix: otp: [21.3, 22.0.7, 22.3, 23.0.4, 23.2.7.0, 24.0] container: - image: erlang:${{ matrix.otp }}-alpine + image: erlang:${{ matrix.otp }} steps: - name: Checkout uses: actions/checkout@v4