Skip to content

Commit

Permalink
chore(ci): upgrade actions/checkout to v3 (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
wingyplus committed Jul 23, 2022
1 parent 0585e1f commit d15bdb3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
name: Check format
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: 24
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
elixir: 1.12.x
needs: check_format
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand All @@ -71,7 +71,7 @@ jobs:
needs: check_format
if: ${{ github.ref != 'refs/heads/master' }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: 25.x
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- otp: 25.x
elixir: 1.12.x
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: 25.x
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- id: set_vars
run: |
mix_hash="${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}"
Expand All @@ -164,7 +164,7 @@ jobs:
name: Check release
needs: check_format
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: 24
Expand Down

0 comments on commit d15bdb3

Please sign in to comment.