From 2cc0ffa7ca21fb7ba97d25d62f58db8830a326ab Mon Sep 17 00:00:00 2001 From: Marcus Kruse Date: Sat, 23 Dec 2023 12:56:05 +0100 Subject: [PATCH] Set elixir version to 1.11 --- .github/workflows/ci.yml | 16 ++++++++++++++++ mix.exs | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39b95aa..64767e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,30 +12,46 @@ jobs: strategy: matrix: elixir: + - '1.11.4' - '1.12.3' - '1.13.4' - '1.14.5' - '1.15.7' - '1.16.0' otp: + - '21.3' - '22.3' - '23.3' - '24.3' - '25.3' - '26.2' exclude: + - elixir: '1.11.4' + otp: '25.3' + - elixir: '1.11.4' + otp: '26.2' + - elixir: '1.12.3' + otp: '21.3' - elixir: '1.12.3' otp: '25.3' - elixir: '1.12.3' otp: '26.2' + - elixir: '1.13.4' + otp: '21.3' - elixir: '1.13.4' otp: '26.2' + - elixir: '1.14.5' + otp: '21.3' - elixir: '1.14.5' otp: '22.3' + - elixir: '1.15.7' + otp: '21.3' - elixir: '1.15.7' otp: '22.3' - elixir: '1.15.7' otp: '23.3' + - elixir: '1.16.0' + otp: '21.3' - elixir: '1.16.0' otp: '22.3' - elixir: '1.16.0' diff --git a/mix.exs b/mix.exs index 99fc6d6..9f8a3df 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule GitHubActions.MixProject do [ app: :git_hub_actions, version: "0.2.19", - elixir: "~> 1.12", + elixir: "~> 1.11", name: "GitHubActions", description: "A little tool to write GitHub actions in Elixir", source_url: @github,