Skip to content

Commit

Permalink
bump github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszsamson committed May 31, 2022
1 parent ca81cff commit d87d9be
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand All @@ -74,13 +74,13 @@ jobs:
- elixir: 1.13.x
otp: 24.3.x
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Cache build artifacts
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.hex
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docsite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
image: squidfunk/mkdocs-material
steps:
- name: Checkout
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3
- name: Build
run: mkdocs build -s
- name: Upload artifact
Expand All @@ -32,9 +32,9 @@ jobs:
max-parallel: 1
steps:
- name: Checkout
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3
- name: Download artifact
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: site
path: site
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-asset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ jobs:
default: true

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up BEAM
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir-version }}
otp-version: ${{ matrix.otp-version }}

- name: Restore dependencies cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
Expand Down

0 comments on commit d87d9be

Please sign in to comment.