From 9fd5f14e2a327366433fd0dbdd0d9b729b1ad066 Mon Sep 17 00:00:00 2001 From: Bryan Naegele Date: Thu, 9 Nov 2023 19:56:35 -0700 Subject: [PATCH] Update elixir-test-matrix.json (#228) * Update elixir-test-matrix.json * Update erlang-test-matrix.json --- .github/elixir-test-matrix.json | 37 +++---------------- .github/erlang-test-matrix.json | 2 +- .github/labeler.yml | 2 + .../opentelemetry_dataloader/mix.exs | 2 +- 4 files changed, 10 insertions(+), 33 deletions(-) diff --git a/.github/elixir-test-matrix.json b/.github/elixir-test-matrix.json index 50d3025..438cce9 100644 --- a/.github/elixir-test-matrix.json +++ b/.github/elixir-test-matrix.json @@ -1,15 +1,10 @@ { "otp_version": [ - "26.0.2", - "25.3.2.5", - "24.3.4.13", + "26.1.2", "23.3.4.19" ], "elixir_version": [ - "1.15.4", - "1.14.4", - "1.13.4", - "1.12.3", + "1.15.7", "1.11.4" ], "rebar3_version": [ @@ -20,39 +15,19 @@ ], "include": [ { - "elixir_version": "1.15.4", - "otp_version": "26.0.2", + "elixir_version": "1.15.7", + "otp_version": "26.1.2", "check_formatted": true } ], "exclude": [ { - "elixir_version": "1.15.4", + "elixir_version": "1.15.7", "otp_version": "23.3.4.19" }, - { - "elixir_version": "1.14.4", - "otp_version": "26.0.2" - }, - { - "elixir_version": "1.13.4", - "otp_version": "26.0.2" - }, - { - "elixir_version": "1.12.3", - "otp_version": "25.3.2.5" - }, - { - "elixir_version": "1.12.3", - "otp_version": "26.0.2" - }, { "elixir_version": "1.11.4", - "otp_version": "25.3.2.5" - }, - { - "elixir_version": "1.11.4", - "otp_version": "26.0.2" + "otp_version": "26.1.2" } ] } diff --git a/.github/erlang-test-matrix.json b/.github/erlang-test-matrix.json index db0f43b..53abde4 100644 --- a/.github/erlang-test-matrix.json +++ b/.github/erlang-test-matrix.json @@ -1,5 +1,5 @@ { - "otp_version": ["26.0.2", "25.3.2.6", "24.3.4.13", "23.3.4.19"], + "otp_version": ["26.1.2", "25.3.2.7", "24.3.4.14", "23.3.4.19"], "rebar3_version": ["3.20.0"], "os": ["ubuntu-20.04"] } diff --git a/.github/labeler.yml b/.github/labeler.yml index 8242f30..8fef6ab 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,4 +1,5 @@ elixir: + - .github/elixir-test-matrix.json - instrumentation/**/*.ex - instrumentation/**/*.exs - instrumentation/**/mix.lock @@ -16,6 +17,7 @@ elixir: - utilities/**/mix.lock erlang: + - .github/erlang-test-matrix.json - instrumentation/**/*.erl - instrumentation/**/*.hrl - instrumentation/**/rebar.* diff --git a/instrumentation/opentelemetry_dataloader/mix.exs b/instrumentation/opentelemetry_dataloader/mix.exs index f0e919c..e44cc42 100644 --- a/instrumentation/opentelemetry_dataloader/mix.exs +++ b/instrumentation/opentelemetry_dataloader/mix.exs @@ -6,7 +6,7 @@ defmodule OpentelemetryDataloader.MixProject do app: :opentelemetry_dataloader, description: "Trace Dataloader with OpenTelemetry.", version: "1.0.0", - elixir: "~> 1.14", + elixir: "~> 1.11", start_permanent: Mix.env() == :prod, deps: deps(), aliases: aliases(),