From 103931ef7a3be732ba7f7a8ebfce294fd7456452 Mon Sep 17 00:00:00 2001 From: Argonus <9743549+Argonus@users.noreply.github.com> Date: Mon, 2 Dec 2024 16:29:23 +0100 Subject: [PATCH] Fix elixir & package name --- .github/workflows/ci.yaml | 8 ++++---- .github/workflows/dev-publish.yaml | 2 +- mix.exs | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7a40358..1c0c20b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,7 +3,7 @@ name: Elixir CI Checks env: DEBIAN_FRONTEND: noninteractive DEPENDENCY_FILE: mix.lock - ELIXIR_VERSION: 1.10.4 # Elixir version used during package publishing + ELIXIR_VERSION: 1.13.0 # Elixir version used during package publishing JOB_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} OTP_VERSION: 22.3.4.7 # OTP version used during package publishing RELEVANT_FILES: "config lib test mix.exs mix.lock" # Important, this controls the caching, make sure to keep this right @@ -35,7 +35,7 @@ jobs: fail-fast: false matrix: otp: [22.3.4.7] - elixir: [1.10.4] + elixir: [1.13.0] runner-os: [ubuntu20] steps: - name: Checkout latest codebase @@ -104,7 +104,7 @@ jobs: fail-fast: false matrix: otp: [22.3.4.7] - elixir: [1.10.4] + elixir: [1.13.0] runner-os: [ubuntu20] steps: - name: Checkout latest codebase @@ -253,7 +253,7 @@ jobs: runs-on: runs-on,runner=2cpu-linux-x64 name: Check release container: - image: elixir:1.10-slim + image: elixir:1.13-slim steps: - uses: actions/checkout@v4 - name: Install Dependencies diff --git a/.github/workflows/dev-publish.yaml b/.github/workflows/dev-publish.yaml index f17c6d3..ae30386 100644 --- a/.github/workflows/dev-publish.yaml +++ b/.github/workflows/dev-publish.yaml @@ -3,7 +3,7 @@ name: Elixir Dev Publish env: DEBIAN_FRONTEND: noninteractive DEPENDENCY_FILE: mix.lock - ELIXIR_VERSION: 1.11.4 # Elixir version used during package publishing + ELIXIR_VERSION: 1.13.0 # Elixir version used during package publishing JOB_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} OTP_VERSION: 23.3.4.7 # OTP version used during package publishing RELEVANT_FILES: "config lib test mix.exs mix.lock" # Important, this controls the caching, make sure to keep this right diff --git a/mix.exs b/mix.exs index 5931fbb..7ae1fdc 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Cluster.Mixfile do def project do [ - app: :fresha_libcluster, + app: :libcluster, version: @version, elixir: "~> 1.13", build_embedded: Mix.env() == :prod,