Hmm using the <example pants github action> I star...
# general
p
Hmm using the example pants github action I started seeing some SSL issues with github actions
Copy code
Run pantsbuild/actions/init-pants@v4-scie-pants
Run if ! command -v pants; then
curl: (60) SSL: no alternative certificate subject name matches target host name '<http://raw.githubusercontent.com|raw.githubusercontent.com>'
More details here: <https://curl.se/docs/sslcerts.html>

curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.
Error: Process completed with exit code 60.
Things dont' fail locally. Maybe some action infrastructure is being annoying?
r
Coworker just started reporting getting similar errors in an ubuntu:22.04 container.
Copy code
curl -kfsSL <https://static.pantsbuild.org/setup/get-pants.sh> | bash
Downloading and installing the pants launcher ...
curl: (60) SSL: no alternative certificate subject name matches target host name '<http://objects.githubusercontent.com|objects.githubusercontent.com>'
Copy code
curl --proto '=https' --tlsv1.2 -fsSL <https://static.pantsbuild.org/setup/get-pants.sh> | bash
curl: (60) SSL: no alternative certificate subject name matches target host name '<http://static.pantsbuild.org|static.pantsbuild.org>'
More details here: <https://curl.se/docs/sslcerts.html>
curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.
Can reproduce in a fresh
ubuntu:22.04
container. Works fine in a fresh
ubuntu:20.04
container
p
Working again for me 😕
r
Confirmed