From 420c4436c559ac8ab2fc109334be32900c2170b0 Mon Sep 17 00:00:00 2001 From: Ricardo Azpeitia Pimentel Date: Thu, 15 May 2025 16:39:16 -0600 Subject: [PATCH 1/2] Update pipeline to run with OTP 27 --- .github/workflows/erlang.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml index dc61710..c6c9c80 100644 --- a/.github/workflows/erlang.yml +++ b/.github/workflows/erlang.yml @@ -10,12 +10,15 @@ jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: - otp: ["25", "26", "27"] - rebar: ["3.23"] + include: + - otp: '25.2.1' + rebar: '3.20.0' + - otp: '27.3.4' + rebar: '3.24.0' steps: - uses: actions/checkout@v3 @@ -25,7 +28,7 @@ jobs: otp-version: ${{matrix.otp}} rebar3-version: ${{matrix.rebar}} - name: Restore _build - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: _build key: "_build-cache-for @@ -34,7 +37,7 @@ jobs: -rebar3-${{steps.setup-beam.outputs.rebar3-version}} -hash-${{hashFiles('rebar.lock')}}" - name: Restore rebar3's cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/rebar3 key: "rebar3-cache-for From b4dee840d4dbcb51d8b9e2ee739ba20547ee1cd0 Mon Sep 17 00:00:00 2001 From: Ricardo Azpeitia Pimentel Date: Thu, 15 May 2025 16:43:58 -0600 Subject: [PATCH 2/2] Update pipeline --- .github/workflows/erlang.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml index c6c9c80..7821e90 100644 --- a/.github/workflows/erlang.yml +++ b/.github/workflows/erlang.yml @@ -14,11 +14,8 @@ jobs: strategy: matrix: - include: - - otp: '25.2.1' - rebar: '3.20.0' - - otp: '27.3.4' - rebar: '3.24.0' + otp: ["25", "26", "27"] + rebar: ["3.24"] steps: - uses: actions/checkout@v3