From eff961dcb85b96c338628ceac0f13c30e384921f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Fri, 22 Mar 2024 19:11:16 -0300 Subject: [PATCH 1/2] chore: bump Elixir version --- .tool-versions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.tool-versions b/.tool-versions index 740cc3c45..8fc286a83 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,5 +1,5 @@ -erlang 26.1 -elixir 1.15.6-otp-26 +erlang 26.2 +elixir 1.16.2-otp-26 golang 1.21.3 rust 1.71.1 protoc 24.3 From 2bf9d51021e82ec7216b04a68729939702467d90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Mon, 25 Mar 2024 11:00:03 -0300 Subject: [PATCH 2/2] Change PLT cache key --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4251c7d2..acf14c694 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,6 +89,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Elixir + id: setup-beam uses: erlef/setup-beam@v1 with: version-type: strict @@ -133,7 +134,7 @@ jobs: id: plt-cache with: path: priv/plts - key: ${{ runner.os }}-plts-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} + key: ${{ runner.os }}-plts-${{ steps.setup-beam.outputs.elixir-version }}-${{ hashFiles('mix.lock') }} - name: Create PLTs if: steps.plt-cache.outputs.cache-hit != 'true' run: |