diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 91ed19e..8aee49d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,19 +14,19 @@ permissions: jobs: unit_tests: name: Unit tests Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}} - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: include: + - elixir: "1.18" + otp: "27" - elixir: "1.16" otp: "26" - elixir: "1.15" otp: "26" - elixir: "1.14" otp: "25" - - elixir: "1.13" - otp: "24" steps: - name: Checkout diff --git a/mix.exs b/mix.exs index 14f107e..04fe0f3 100644 --- a/mix.exs +++ b/mix.exs @@ -9,7 +9,7 @@ defmodule OpenPGP.MixProject do [ app: :open_pgp, version: @version, - elixir: "~> 1.13", + elixir: "~> 1.14", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, description: @description,