Skip to content

Commit

Permalink
update to 1.17 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegillet authored Jun 30, 2024
1 parent 23118b4 commit de59ab9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test

on:
push:
branches: [ main ]
branches: [main]
pull_request:
workflow_dispatch:

Expand All @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04

container:
image: hexpm/elixir:1.16.0-erlang-26.2.1-debian-bookworm-20231009
image: hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612

steps:
- name: Install git & jq
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.16.0-otp-26
erlang 26.2.1
elixir 1.17.0-otp-27
erlang 27.0
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.16.0-erlang-26.2.1-debian-bookworm-20231009 as builder
FROM hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612 as builder

# Install SSL ca certificates
RUN apt-get update && \
Expand All @@ -14,7 +14,7 @@ COPY . .
# Builds an escript bin/elixir_representer
RUN ./bin/build.sh

FROM hexpm/elixir:1.16.0-erlang-26.2.1-debian-bookworm-20231009
FROM hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612
COPY --from=builder /etc/passwd /etc/passwd
COPY --from=builder /elixir-representer/bin /opt/representer/bin
RUN apt-get update && \
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 Representer.MixProject do
[
app: :representer,
version: "0.1.0",
elixir: "~> 1.16",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
deps: deps(),
escript: escript()
Expand Down

0 comments on commit de59ab9

Please sign in to comment.