Skip to content

Commit d5a52eb

Browse files
authored
feat(#13): Update to OTP 28 (#14)
Closes #13.
1 parent f59a86a commit d5a52eb

4 files changed

Lines changed: 12 additions & 45 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
branches: [main]
88

99
env:
10-
OTP-VERSION: 25.2.3
11-
REBAR3-VERSION: 3.20.0
10+
OTP-VERSION: '28.1'
11+
REBAR3-VERSION: '3.25.0'
1212

1313
jobs:
1414
check:
@@ -17,16 +17,12 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919

20-
- uses: webfactory/ssh-agent@v0.7.0
21-
with:
22-
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
23-
2420
- uses: erlef/setup-beam@v1
2521
with:
2622
otp-version: ${{ env.OTP-VERSION }}
2723
rebar3-version: ${{ env.REBAR3-VERSION }}
2824

29-
- uses: actions/cache@v3.2.6
25+
- uses: actions/cache@v4
3026
id: rebar3-cache
3127
with:
3228
path: |

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ An OTP application to send and receive real time events over HTTP connections.
77

88
## Prerequisites
99

10-
![Min. OTP version](https://img.shields.io/badge/min._OTP-25.3.2-blue)
11-
![Max. OTP version](https://img.shields.io/badge/max._OTP-26-blue)
12-
![Min. rebar version](https://img.shields.io/badge/min._rebar-3.22.X-blue)
10+
![Min. OTP version](https://img.shields.io/badge/min._OTP-28-blue)
11+
![Min. rebar version](https://img.shields.io/badge/min._rebar-3.25.X-blue)
1312

1413
## Usage
1514

rebar.config

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{erl_opts, [warnings_as_errors]}.
22

33
{deps, [
4-
{cowboy, {git, "git@github.com:ninenines/cowboy.git", {branch, "master"}}},
4+
{cowboy, {git, "https://github.com/ninenines/cowboy.git", {branch, "master"}}},
55
{ebus, "0.3.0", {pkg, erlbus}},
6-
{njson, {git, "git@github.com:nomasystems/njson.git", {branch, "main"}}},
7-
{nuid, {git, "git@github.com:nomasystems/nuid.git", {branch, "main"}}}
6+
{njson, {git, "https://github.com/nomasystems/njson.git", {branch, "main"}}},
7+
{nuid, {git, "https://github.com/nomasystems/nuid.git", {branch, "main"}}}
88
]}.
99

1010
{project_plugins, [
11-
{erlfmt, {git, "git@github.com:WhatsApp/erlfmt.git", {branch, "main"}}},
12-
{gradualizer, {git, "git@github.com:josefs/Gradualizer.git", {branch, "master"}}}
11+
{erlfmt, {git, "https://github.com/WhatsApp/erlfmt.git", {branch, "main"}}},
12+
{gradualizer, {git, "https://github.com/josefs/Gradualizer.git", {branch, "master"}}}
1313
]}.
1414
{erlfmt, [write]}.
1515

@@ -29,8 +29,8 @@
2929
{profiles, [
3030
{test, [
3131
{deps, [
32-
{gun, {git, "git@github.com:ninenines/gun.git", {branch, "master"}}},
33-
{nct_util, {git, "git@github.com:nomasystems/nct_util.git", {branch, "main"}}}
32+
{gun, {git, "https://github.com/ninenines/gun.git", {branch, "master"}}},
33+
{nct_util, {git, "https://github.com/nomasystems/nct_util.git", {branch, "main"}}}
3434
]}
3535
]}
3636
]}.

rebar.lock

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)