From 9a7562195d30c5f272487df6d50766f19c39128d Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Sun, 8 Mar 2026 08:46:32 -0700 Subject: [PATCH] Fix almond kernel installation by updating coursier URL The git.io/coursier-cli URL is deprecated and no longer updated. Switch to the official GitHub releases URL and add --use-bootstrap flag as recommended by almond documentation. --- .github/workflows/conformance.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 2fff61b..5e86af2 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -60,10 +60,10 @@ jobs: kernel-name: ark - name: almond install: | - curl -Lo coursier https://git.io/coursier-cli - chmod +x coursier - ./coursier launch almond -- --install - rm -f coursier + curl -fLo cs https://github.com/coursier/coursier/releases/latest/download/coursier + chmod +x cs + ./cs launch --use-bootstrap almond -- --install + rm -f cs kernel-name: scala - name: ijulia install: julia -e 'using Pkg; Pkg.add("IJulia"); using IJulia'