From d8010abfdafdb279fca3bf03d7e625e9447022ed Mon Sep 17 00:00:00 2001 From: Cam Saul Date: Mon, 12 Aug 2024 19:23:42 +0000 Subject: [PATCH] Change Clojure install action --- .github/actions/setup-clojure/action.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup-clojure/action.yml b/.github/actions/setup-clojure/action.yml index a963f8d..a772e89 100644 --- a/.github/actions/setup-clojure/action.yml +++ b/.github/actions/setup-clojure/action.yml @@ -17,10 +17,11 @@ runs: with: java-version: ${{ inputs.java-version }} distribution: 'temurin' - - name: Setup Clojure - uses: DeLaGuardo/setup-clojure@12.5 - with: - cli: ${{ inputs.clojure-version }} + - name: Install Clojure CLI + shell: bash + run: | + curl -O https://download.clojure.org/install/linux-install-${{ inputs.clojure-version }}.sh && + sudo bash ./linux-install-${{ inputs.clojure-version }}.sh - name: Restore cache uses: actions/cache@v3 with: