Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some maintenance updates #62

Merged
merged 10 commits into from
Aug 21, 2023
Prev Previous commit
Next Next commit
Update some CI versions
  • Loading branch information
paulo-ferraz-oliveira committed Aug 20, 2023
commit 9968a2254520fe2c04413052fc2ee74c353cfded
12 changes: 6 additions & 6 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 9,27 @@ jobs:

build:

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

strategy:
matrix:
otp: ['25.2.1']
rebar: ['3.20.0']
otp: ["25", "26"]
elbrujohalcon marked this conversation as resolved.
Show resolved Hide resolved
rebar: ["3.22"]

steps:
elbrujohalcon marked this conversation as resolved.
Show resolved Hide resolved
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
id: setup-beam
with:
otp-version: ${{matrix.otp}}
rebar3-version: ${{matrix.rebar}}
- name: Restore _build
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: _build
key: _build-cache-for-os-${{runner.os}}-otp-${{steps.setup-beam.outputs.otp-version}}-rebar3-${{steps.setup-beam.outputs.rebar3-version}}-hash-${{hashFiles('rebar.lock')}}
- name: Restore rebar3's cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/rebar3
key: rebar3-cache-for-os-${{runner.os}}-otp-${{steps.setup-beam.outputs.otp-version}}-rebar3-${{steps.setup-beam.outputs.rebar3-version}}-hash-${{hashFiles('rebar.lock')}}
Expand Down