Skip to content

Commit 420c443

Browse files
committed
Update pipeline to run with OTP 27
1 parent 40239b8 commit 420c443

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/erlang.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@ jobs:
1010

1111
build:
1212

13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414

1515
strategy:
1616
matrix:
17-
otp: ["25", "26", "27"]
18-
rebar: ["3.23"]
17+
include:
18+
- otp: '25.2.1'
19+
rebar: '3.20.0'
20+
- otp: '27.3.4'
21+
rebar: '3.24.0'
1922

2023
steps:
2124
- uses: actions/checkout@v3
@@ -25,7 +28,7 @@ jobs:
2528
otp-version: ${{matrix.otp}}
2629
rebar3-version: ${{matrix.rebar}}
2730
- name: Restore _build
28-
uses: actions/cache@v3
31+
uses: actions/cache@v4
2932
with:
3033
path: _build
3134
key: "_build-cache-for
@@ -34,7 +37,7 @@ jobs:
3437
-rebar3-${{steps.setup-beam.outputs.rebar3-version}}
3538
-hash-${{hashFiles('rebar.lock')}}"
3639
- name: Restore rebar3's cache
37-
uses: actions/cache@v3
40+
uses: actions/cache@v4
3841
with:
3942
path: ~/.cache/rebar3
4043
key: "rebar3-cache-for

0 commit comments

Comments
 (0)