Skip to content

Commit

Permalink
fix(deps): Updated dependencies (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
YgorCastor committed Jan 8, 2024
1 parent 0fc0d04 commit c0f7ac7
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 40 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ jobs:
runs-on: ubuntu-latest
env:
MIX_ENV: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
container:
image: elixir:1.14.2-alpine
image: hexpm/elixir:1.16.0-erlang-26.2.1-alpine-3.17.5
services:
ravendb:
image: ravendb/ravendb
Expand All @@ -24,9 +27,6 @@ jobs:
RAVEN_License_Eula_Accepted: "true"
RAVEN_Security_UnsecuredAccessAllowed: "PublicNetwork"
steps:
- uses: technote-space/auto-cancel-redundant-job@v1
with:
EXCLUDE_MERGED: "true"
- name: Install Git/Curl/GNU Tar
run: apk add --no-cache curl tar git make gcc libc-dev g++
- name: Fix git permissions
Expand Down Expand Up @@ -66,8 +66,11 @@ jobs:
runs-on: ubuntu-latest
env:
MIX_ENV: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-dlzr
cancel-in-progress: true
container:
image: elixir:1.14.2-alpine
image: hexpm/elixir:1.16.0-erlang-26.2.1-alpine-3.17.5
services:
ravendb:
image: ravendb/ravendb
Expand All @@ -78,9 +81,6 @@ jobs:
RAVEN_License_Eula_Accepted: "true"
RAVEN_Security_UnsecuredAccessAllowed: "PublicNetwork"
steps:
- uses: technote-space/auto-cancel-redundant-job@v1
with:
EXCLUDE_MERGED: "true"
- name: Install Git/Curl/GNU Tar
run: apk add --no-cache curl tar git make gcc libc-dev g++
- name: Fix git permissions
Expand All @@ -95,18 +95,18 @@ jobs:
path: |
_build
deps
key: ${{ runner.os }}-02-build-${{ hashFiles('mix.lock') }}
key: ${{ runner.os }}-03-build-${{ hashFiles('mix.lock') }}
restore-keys: |
${{ runner.os }}-02-build-${{ hashFiles('mix.lock') }}
${{ runner.os }}-02-build-
${{ runner.os }}-03-build-${{ hashFiles('mix.lock') }}
${{ runner.os }}-03-build-
- name: Dyalizer Cache
uses: actions/cache@v3
id: mix-dialyzer
with:
path: priv/plts
key: ${{ runner.os }}-02-dialyzer
key: ${{ runner.os }}-03-dialyzer
restore-keys: |
${{ runner.os }}-02-dialyzer
${{ runner.os }}-03-dialyzer
- name: Install Mix and Rebar
run: mix local.hex --force && mix local.rebar --force
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.14.5-otp-25
erlang 25.3.2
elixir 1.16.0-otp-26
erlang 26.2.1
2 changes: 1 addition & 1 deletion lib/documents/session/session.ex
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ defmodule Ravix.Documents.Session do
state.conventions.session_idle_ttl do
Telemetry.session_timed_out(state.store)

Logger.warn(
Logger.warning(
"[RAVIX] The session #{state.session_id} timed-out because it was inactive for more than #{inspect(state.conventions.session_idle_ttl)} seconds"
)

Expand Down

0 comments on commit c0f7ac7

Please sign in to comment.