Skip to content

Commit 4102b01

Browse files
authored
Merge pull request #16 from esl/upgrades
Upgrades
2 parents c5d7804 + d484b53 commit 4102b01

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

.github/workflows/ci.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
name: OTP ${{matrix.otp}}
1212
strategy:
1313
matrix:
14-
otp: ['26.0', '25.3', '24.3']
15-
runs-on: 'ubuntu-22.04'
14+
otp: ['27', '26', '25']
15+
runs-on: 'ubuntu-24.04'
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
- uses: erlef/setup-beam@v1
2121
with:
2222
otp-version: ${{ matrix.otp }}
23-
rebar3-version: '3.21.0'
24-
- uses: actions/cache@v2
23+
rebar3-version: '3.24.0'
24+
- uses: actions/cache@v4
2525
name: Cache
2626
with:
2727
path: |
@@ -32,13 +32,13 @@ jobs:
3232
- run: rebar3 compile
3333
- run: rebar3 ct
3434
- run: rebar3 dialyzer
35-
if: ${{ matrix.otp == '26.0' }}
35+
if: ${{ matrix.otp == '27' }}
3636
- run: rebar3 xref
37-
if: ${{ matrix.otp == '26.0' }}
37+
if: ${{ matrix.otp == '27' }}
3838
- run: rebar3 as test do cover, covertool generate
39-
if: ${{ matrix.otp == '26.0' }}
39+
if: ${{ matrix.otp == '27' }}
4040
- name: Upload code coverage
4141
uses: codecov/codecov-action@v2
42-
if: ${{ matrix.otp == '26.0' }}
42+
if: ${{ matrix.otp == '27' }}
4343
with:
4444
file: "_build/test/covertool/segmented_cache.covertool.xml"

rebar.config

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{erl_opts, []}.
22

33
{deps, [
4-
{telemetry, "1.2.1"}
4+
{telemetry, "1.3.0"}
55
]}.
66

77
{project_plugins, [
8-
{covertool, "2.0.4"}
8+
{rebar3_hex, "7.0.8"},
9+
{rebar3_ex_doc, "0.2.23"},
10+
{covertool, "2.0.7"}
911
]}.
1012

1113
{covertool, [

rebar.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{"1.2.0",
2-
[{<<"telemetry">>,{pkg,<<"telemetry">>,<<"1.2.1">>},0}]}.
2+
[{<<"telemetry">>,{pkg,<<"telemetry">>,<<"1.3.0">>},0}]}.
33
[
44
{pkg_hash,[
5-
{<<"telemetry">>, <<"68FDFE8D8F05A8428483A97D7AAB2F268AAFF24B49E0F599FAA091F1D4E7F61C">>}]},
5+
{<<"telemetry">>, <<"FEDEBBAE410D715CF8E7062C96A1EF32EC22E764197F70CDA73D82778D61E7A2">>}]},
66
{pkg_hash_ext,[
7-
{<<"telemetry">>, <<"DAD9CE9D8EFFC621708F99EAC538EF1CBE05D6A874DD741DE2E689C47FEAFED5">>}]}
7+
{<<"telemetry">>, <<"7015FC8919DBE63764F4B4B87A95B7C0996BD539E0D499BE6EC9D7F3875B79E6">>}]}
88
].

0 commit comments

Comments
 (0)