Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Elixir 1.18 #132

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/elixir_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-20.04

container:
image: hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612
image: hexpm/elixir:1.18.0-erlang-27.2-debian-bookworm-20241202

steps:
- name: Install git
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/exercism_test_helper_build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04

container:
image: hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612
image: hexpm/elixir:1.18.0-erlang-27.2-debian-bookworm-20241202

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
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.17.0-otp-27
erlang 27.0
elixir 1.18.0-otp-27
erlang 27.2
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612
FROM hexpm/elixir:1.18.0-erlang-27.2-debian-bookworm-20241202

# Install SSL ca certificates
RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Exercism Automated Test Runner for Elixir Exercises

## Environment

The test runner currently targets exercises supporting Elixir >= 1.12 and Erlang/OTP >= 24, but is running on Elixir 1.17.0 on hexpm's `elixir:1.17.0-erlang-27.0-debian-bookworm-20240612` image.
The test runner currently targets exercises supporting Elixir >= 1.14 and Erlang/OTP >= 25, but is running on Elixir 1.18.0 on hexpm's `elixir:1.18.0-erlang-27.2-debian-bookworm-20241202` image.

The `Dockerfile` also has added `bash`, `jo` and `jq` to the image.

Expand Down
2 changes: 1 addition & 1 deletion elixir
Submodule elixir updated 210 files
2 changes: 1 addition & 1 deletion exercism_test_helper/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule ExercismTestHelper.MixProject do
[
app: :exercism_test_helper,
version: "0.1.2",
elixir: "~> 1.17",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
escript: escript()
Expand Down