sergio
My Github CI has been down since yesterday morning. Any else experiencing this issue?
Error: 14:04:41.018 [error] Failed to connect to ‘raw.githubusercontent.com’ to download locale :“en-IE”. Reason: {:tls_alert, {:unexpected_message, ‘TLS client: In state hello_middlebox_assert at ssl_gen_statem.erl:736 generated CLIENT ALERT: Fatal - Unexpected Message\n {unexpected_msg,{internal,{encrypted_extensions,#{sni => {sni,}}}}}’}}
People on Twitter also seem to be complaining.
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
Hey there,
It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Quite interesting article Google brought me. Didn’t find any mentions about it here.
What do you think in general? Would you use togethe...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Hi there! :wave:
@frigidcode and I (but mostly him) have been running an Elixir Book club, we’re almost done with Designing Elixir Syste...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Just published claude-code-elixir, a plugin marketplace for Claude Code with Elixir support. These are the plugins I’ve been using for my...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
They had a pretty big hickup and even though they claim it’s resolved, various people on HN were saying they still had problems: GitHub Status - Incident with Actions
michelson
It seems to be an issue with Erlang version, I’ve upgraded to OTP 25 and error gone.
ref: github actions SSL error · Issue #184 · elixir-cldr/cldr · GitHub
sergio
We had to make this change to unclog the CI on Github. Hope this helps people.
Still a very weird fix – what if you are on a very legacy setup and cannot freely update such a integral part of your stack to a next major revision? I shudder to think.
nathanalderson
Currently in this boat. Can’t just update OTP immediately. It seems to work okay on my up-to-date local Arch environment, but fails in our Ubuntu 22.04 production container (which is also up to date). Also, curl and wget inside the container can fetch the file just fine.
Interested in any other workarounds folks may find.
mlen
Please anyone has some solution for this?
Migration to
OTP 25isn’t on the table for us due to legacy code.This is super weird issue.
We locally build with
mix releaseand Dockerfile (the target OS is different from dev OS) and it fails onmix assets.deploywith the dependency ofdart-sassfailing to download itself from GitHub.However, running
mix assets.deployon dev OS there’s no issue with CA certs. (dev OS has same elixir/OTP setup).Rodeoclash
Weird error, I’m getting exactly the same thing running the official Docker image
elixir:1.13.4only in Github CI. Not related to Dart but to downloading Tailwind.Anyone upgraded to the 1.14rc image? Does that fix it?
EDIT: Looks like it will because it’s on OTP 25 - still rc code
mlen
There’s official docker image for
elixir:1.13.4based on OTP 25 and you might get away with that?I found out that OTP 25 added two new methods to get OS provided CA-certs.
When I get on my laptop again I will simply disable HTTPS check in
dart-sasslibrary until it gets fixed in itscastoredependency - if I understand this issue correctly…EDIT: either upgrade to
OTP 25or wait for new release ofcastoreif your code (and its dependencies) depend on this CA library.Rodeoclash
Oh, nice spotting. I missed it in the list of images on Docker Hub. Thanks!
carterbryden
If anyone else is running into some odd errors related to this, these are the steps I had to go through to get back up and running:
Without all of those, I was getting similar errors to this thread, or erts errors.
johnnyshields
Did anyone identify the exact root cause of this problem? (i.e. beyond upgrading to OTP25 magically fixes it)