Skip to content

Commit

Permalink
updating versions of checkout/cache/coveralls actions
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysGonchar committed Mar 22, 2023
1 parent 49f2b68 commit 9bdd392
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
env:
PRESET: 'small_tests'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.cache/rebar3
key: rebar3-${{ hashFiles('rebar.lock') }}
Expand All @@ -37,7 +37,7 @@ jobs:
- name: prepare coverage report
run: ./rebar3 codecov analyze --lcov --json false
- name: report coverage
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: small_tests on OTP ${{matrix.otp}}
Expand All @@ -55,11 +55,11 @@ jobs:
env:
PRESET: ${{matrix.preset}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.cache/rebar3
key: rebar3-${{ hashFiles('rebar.lock') }}
Expand All @@ -80,7 +80,7 @@ jobs:
- name: prepare coverage report
run: ./rebar3 codecov analyze --lcov --json false
- name: report coverage
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: ${{matrix.preset}} on OTP ${{matrix.otp}}
Expand All @@ -92,7 +92,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Finish coveralls parallel build
uses: coverallsapp/github-action@v1.1.2
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
Expand All @@ -105,7 +105,7 @@ jobs:
otp: [ '25.2' ]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand All @@ -119,7 +119,7 @@ jobs:
otp: [ '25.2' ]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand All @@ -133,7 +133,7 @@ jobs:
otp: [ '25.2' ]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand All @@ -150,5 +150,5 @@ jobs:
ESL_ERLANG_PKG_VER: "25.0.1-1"
pkg_PLATFORM: ${{matrix.pkg}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: tools/test.sh -p pkg

0 comments on commit 9bdd392

Please sign in to comment.