From 81bf8630808085b46cdd8248a12b42b463bc6213 Mon Sep 17 00:00:00 2001 From: caumond Date: Mon, 17 Nov 2025 09:22:05 +0100 Subject: [PATCH 1/2] update versions --- .github/workflows/commit_validation.yml | 6 +++--- deps.edn | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/commit_validation.yml b/.github/workflows/commit_validation.yml index 9c0b1f7..380b166 100644 --- a/.github/workflows/commit_validation.yml +++ b/.github/workflows/commit_validation.yml @@ -29,9 +29,9 @@ jobs: # See https://github.com/DeLaGuardo/setup-clojure/commits/main/ uses: DeLaGuardo/setup-clojure@3fe9b3ae632c6758d0b7757b0838606ef4287b08 #v13.2 with: - cli: 1.12.2.1565 - bb: 1.12.208 - clj-kondo: 2025.09.19 + cli: 1.12.3.1577 + bb: 1.12.209 + clj-kondo: 2025.10.23 zprint: 1.3.0 - name: Lint run: bb lint -v diff --git a/deps.edn b/deps.edn index 1773ad3..c5c6de6 100644 --- a/deps.edn +++ b/deps.edn @@ -21,6 +21,6 @@ :main-opts ["-m" "cognitect.test-runner" "-r" ".*-test.*" "-d" "test/src"]} :test-unit {:extra-paths ["env/unit/test/" "env/unit/resources"] :main-opts ["-m" "cognitect.test-runner" "-r" ".*-test.*" "-d" "env/unit/test/"]}} - :deps {nrepl/nrepl {:mvn/version "1.4.0"} - org.clojure/tools.cli {:mvn/version "1.1.230"}} + :deps {nrepl/nrepl {:mvn/version "1.5.1"} + org.clojure/tools.cli {:mvn/version "1.2.245"}} :paths ["src"]} From 7c56a38eea58c66fe2fa93a02cb8acd00a220fd6 Mon Sep 17 00:00:00 2001 From: caumond Date: Mon, 17 Nov 2025 09:22:19 +0100 Subject: [PATCH 2/2] update fdfind --- .github/workflows/commit_validation.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commit_validation.yml b/.github/workflows/commit_validation.yml index 380b166..2ef708e 100644 --- a/.github/workflows/commit_validation.yml +++ b/.github/workflows/commit_validation.yml @@ -37,8 +37,13 @@ jobs: run: bb lint -v - name: Setup zprint run: echo "{:search-config? true}" >> ~/.zprintrc - - name: Install fdfind - run: sudo rm /var/lib/man-db/auto-update && sudo apt-get install -y fd-find && mkdir -p ~/.local/bin/ && PATH=$PATH:~/.local/bin/ && ln -s $(which fdfind) ~/.local/bin/fd + - name: Install fd-find + run: | + sudo apt-get update + sudo apt-get install -y fd-find + mkdir -p ~/.local/bin + ln -s "$(which fdfind)" ~/.local/bin/fd + echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Cache clojure dependencies uses: actions/cache@v4 with: