Skip to content

Commit

Permalink
Elixir 1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
angelikatyborska committed Dec 26, 2023
1 parent faa253f commit a9a7ff0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/elixir_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-22.04

container:
image: hexpm/elixir:1.15.2-erlang-26.0.2-debian-bookworm-20230612
image: hexpm/elixir:1.16.0-erlang-26.2.1-debian-bookworm-20231009

steps:
- name: Install git
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
id: plt-cache
with:
path: priv/plts
key: elixir:1.15.2-erlang-26.0.2-debian-bookworm-20230612-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}-v3
key: elixir:1.16.0-erlang-26.2.1-debian-bookworm-20231009-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}-v3

- name: Create PLTs
if: steps.plt-cache.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/elixir_test_external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-22.04

container:
image: hexpm/elixir:1.15.2-erlang-26.0.2-debian-bookworm-20230612
image: hexpm/elixir:1.16.0-erlang-26.2.1-debian-bookworm-20231009

steps:
- name: Install git
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.15.2-otp-26
erlang 26.0.2
elixir 1.16.0-otp-26
erlang 26.2.1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hexpm/elixir:1.15.2-erlang-26.0.2-debian-bookworm-20230612 as builder
FROM hexpm/elixir:1.16.0-erlang-26.2.1-debian-bookworm-20231009 as builder

RUN apt-get update && \
apt-get install bash -y
Expand All @@ -13,7 +13,7 @@ COPY . .
# Builds an escript bin/elixir_analyzer
RUN ./bin/build.sh

FROM hexpm/elixir:1.15.2-erlang-26.0.2-debian-bookworm-20230612
FROM hexpm/elixir:1.16.0-erlang-26.2.1-debian-bookworm-20231009
COPY --from=builder /etc/passwd /etc/passwd

COPY --from=builder /elixir-analyzer/bin /opt/analyzer/bin
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule ElixirAnalyzer.MixProject do
[
app: :elixir_analyzer,
version: "0.1.0",
elixir: "~> 1.15",
elixir: "~> 1.16",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
# Turn off protocol consolidation to avoid warning in analyzed code
Expand Down

0 comments on commit a9a7ff0

Please sign in to comment.