diff options
author | Jean-Sébastien Pédron <[email protected]> | 2025-07-22 11:35:23 +0200 |
---|---|---|
committer | Jean-Sébastien Pédron <[email protected]> | 2025-07-22 17:24:42 +0200 |
commit | 75d0a61fba23a9b820c3a272acf07ab37d94482b (patch) | |
tree | 86b359ecbfbd3a2c2bcad909b79f0e1ce5df058e | |
parent | 5b8264609ab562ab4c968d4f27af55415062012b (diff) | |
download | erlang.mk-75d0a61fba23a9b820c3a272acf07ab37d94482b.tar.gz erlang.mk-75d0a61fba23a9b820c3a272acf07ab37d94482b.tar.bz2 erlang.mk-75d0a61fba23a9b820c3a272acf07ab37d94482b.zip |
GitHub Actions: Pin Elixir version is `check-asdf-elixir`
Using the "latest" version doesn't work because it fails to determine
a version for Erlang/OTP.
To work around this, we pin the version of Elixir to "1.18.4-otp-27".
While here, update asdf to version 1.18.0.
-rw-r--r-- | .github/workflows/ci.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3c12e65..0598246 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -139,11 +139,11 @@ jobs: - name: Install asdf along with Elixir run: | - wget https://github.com/asdf-vm/asdf/releases/download/v0.16.5/asdf-v0.16.5-linux-amd64.tar.gz + wget https://github.com/asdf-vm/asdf/releases/download/v0.18.0/asdf-v0.18.0-linux-amd64.tar.gz tar xf asdf-v*-linux-amd64.tar.gz ./asdf plugin add elixir - ./asdf install elixir latest - ./asdf set elixir latest + ./asdf install elixir 1.18.4-otp-27 + ./asdf set elixir 1.18.4-otp-27 - name: Install libsodium run: sudo apt-get -y install libsodium-dev |