Skip to content

Commit 3531a9e

Browse files
authored
test & ci: bump deps (#144)
Of note: - new kondo found redundant str calls, cool! fixed!
1 parent e8a3f1e commit 3531a9e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/nvd_scanner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
java-version: 21
2525

2626
- name: Install Clojure Tools
27-
uses: DeLaGuardo/setup-clojure@12.5
27+
uses: DeLaGuardo/setup-clojure@13.0
2828
with:
2929
cli: 'latest'
3030
bb: 'latest'

.github/workflows/shared-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
if: inputs.jdk != 'skip'
3232

3333
- name: Install Clojure Tools
34-
uses: DeLaGuardo/setup-clojure@12.5
34+
uses: DeLaGuardo/setup-clojure@13.0
3535
with:
3636
cli: 'latest'
3737
bb: 'latest'

deps.edn

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@
2424
:extra-deps {com.github.clj-easy/graal-build-time {:mvn/version "1.0.5"}}}
2525
:build
2626
{:extra-paths ["build"]
27-
:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}
27+
:deps {io.github.clojure/tools.build {:mvn/version "0.10.6"}
2828
slipset/deps-deploy {:mvn/version "0.2.2"}
2929
babashka/fs {:mvn/version "0.5.22"}}
3030
:ns-default build}
3131
;; for consistent linting we use a specific version of clj-kondo through the jvm
32-
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2024.09.27"}}
32+
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2024.11.14"}}
3333
:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}
3434
:main-opts ["-m" "clj-kondo.main"]}
3535
:eastwood {:extra-deps {jonase/eastwood {:mvn/version "1.4.3"}}
3636
:main-opts ["-m" "eastwood.lint" {:source-paths ["src/clojure"]
3737
:test-paths ["test"]
3838
:add-linters [:performance]}]}
39-
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.10.1241"}
39+
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.11.1250"}
4040
org.clojure/clojure {:mvn/version "1.12.0"}
4141
org.slf4j/slf4j-simple {:mvn/version "2.0.16"} ;; to rid ourselves of logger warnings
4242
}

script/publish.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@
140140
;; followed by any attributes
141141
"$1"
142142
;; followed by datestamp (local time is fine)
143-
(str " - " (yyyy-mm-dd-now-utc))
143+
" - " (yyyy-mm-dd-now-utc)
144144
;; followed by an AsciiDoc anchor for easy referencing
145-
(str " [[v" version "]]")
145+
" [[v" version "]]"
146146
;; followed by section content
147147
"$2"
148148
;; followed by link to commit log

0 commit comments

Comments
 (0)