From 4c8b0349026ef029fc04e1081cac88c90be9b95a Mon Sep 17 00:00:00 2001 From: Jonathan Balls Date: Thu, 3 Apr 2025 19:07:36 +0100 Subject: [PATCH 1/2] update elixir version --- .github/workflows/elixir.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 2bc636d..6769500 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -23,9 +23,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Elixir - uses: erlef/setup-beam@61e01a43a562a89bfc54c7f9a378ff67b03e4a21 # v1.16.0 + uses: erlef/setup-beam@v1.18.2 with: - elixir-version: '1.16.2' # [Required] Define the Elixir version + elixir-version: '1.18.2' # [Required] Define the Elixir version otp-version: '26.0' # [Required] Define the Erlang/OTP version - name: Restore dependencies cache uses: actions/cache@v3 From 46e45eb035ed26dabe42c183aded00fa16b3a4a6 Mon Sep 17 00:00:00 2001 From: Jonathan Balls Date: Thu, 3 Apr 2025 19:08:51 +0100 Subject: [PATCH 2/2] run on all PRs --- .github/workflows/elixir.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 6769500..1ba3515 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -7,9 +7,9 @@ name: Elixir CI on: push: - branches: [ "main" ] + branches: [ "*" ] pull_request: - branches: [ "main" ] + branches: [ "*" ] permissions: contents: read