Skip to content

Commit

Permalink
init test elixir 1.13.4 upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
davidspek authored Dec 1, 2022
1 parent 1470133 commit 6dfe0a7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-6-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-6
key: ${{ runner.os }}-mix-7-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-7
- name: Restore _build
uses: actions/cache@v3
with:
path: _build
key: ${{ runner.os }}-mix-6-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-6
key: ${{ runner.os }}-mix-7-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-7
- run: mix deps.get
- run: mix test
- uses: 8398a7/action-slack@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,14 +146,14 @@ jobs:
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-6-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-6
key: ${{ runner.os }}-mix-7-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-7
- name: Restore _build
uses: actions/cache@v3
with:
path: _build
key: ${{ runner.os }}-mix-6-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-6
key: ${{ runner.os }}-mix-7-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-7
- run: mix deps.get
- run: mix test
- uses: 8398a7/action-slack@v3
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
erlang 24.3.4.6
elixir 1.12.3
elixir 1.13.4
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bitwalker/alpine-elixir:1.12.3 AS builder
FROM bitwalker/alpine-elixir:1.13.4 AS builder

# The following are build arguments used to change variable parts of the image.
# The name of your application/release (required)
Expand Down

0 comments on commit 6dfe0a7

Please sign in to comment.