From 2bc8048cbfcbba8f325a932f11690c1132e1c5be Mon Sep 17 00:00:00 2001 From: Michal Kuratczyk Date: Tue, 1 Jul 2025 12:39:00 +0200 Subject: [PATCH] updates --- .github/workflows/test-make-target.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test-make-target.yaml b/.github/workflows/test-make-target.yaml index 29841672f9..64b55ecb5b 100644 --- a/.github/workflows/test-make-target.yaml +++ b/.github/workflows/test-make-target.yaml @@ -17,11 +17,11 @@ on: type: boolean previous_version: required: false - default: 'tags/v4.0.9' + default: 'tags/v4.1.1' type: string previous_otp_version: required: false - default: '26' + default: '26.2.5.13' type: string make_target: required: true @@ -51,11 +51,6 @@ jobs: with: otp-version: ${{ inputs.erlang_version }} elixir-version: ${{ inputs.elixir_version }} - hexpm-mirrors: | - https://builds.hex.pm - https://cdn.jsdelivr.net/hex - # This currently only applies to Elixir; and can be safely - # restricted to the build jobs to avoid duplication in output. disable_problem_matchers: true - name: MIXED CLUSTERS - RESTORE OLDER ERLANG FROM CACHE @@ -63,13 +58,15 @@ jobs: if: inputs.mixed_clusters id: cache-older-erlang-restore with: - path: ~/.cache/erlang-${{ inputs.previous_otp_version }} + path: ~/.cache/erlang-${{steps.setup-beam.outputs.erlang-version}} key: erlang-${{ inputs.previous_otp_version }}-${{ runner.os }} - name: MIXED CLUSTERS - SETUP OLDER ERLANG VERSION uses: erlef/setup-beam@v1.19 if: inputs.mixed_clusters && steps.cache-older-erlang-restore.outputs.cache-hit != 'true' with: + # we need a strict version to cache correctly + version-type: strict otp-version: ${{ inputs.previous_otp_version }} #elixir-version: ${{ inputs.elixir_version }}