Skip to content

Commit 9e6ac11

Browse files
authored
maintenance (#403)
* ci: bump github actions checkout * dev: bump clj-kondo dep * dev: bump tools build dep * dev: bump flow storm dep * test libs: bump clojure-mcp * ci: lib tests: downgrade gradle for antq tests
1 parent b8a2a67 commit 9e6ac11

File tree

7 files changed

+18
-11
lines changed

7 files changed

+18
-11
lines changed

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Setup
1717
uses: ./.github/workflows/shared-setup

.github/workflows/libs-test.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Setup
2525
uses: ./.github/workflows/shared-setup
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
fetch-depth: 0
4747

@@ -61,5 +61,12 @@ jobs:
6161
uses: ./.github/workflows/setup-planck
6262
if: contains( matrix.requires, 'planck' )
6363

64+
# The runner image comes with a later version gradle that does not work with antq unit tests yet
65+
- name: Install Gradle for antq
66+
uses: gradle/actions/setup-gradle@v4
67+
with:
68+
gradle-version: '8.14.3'
69+
if: matrix.lib-name == 'antq'
70+
6471
- name: Run Libs Tests
6572
run: bb test-libs run ${{ matrix.lib-name }}

.github/workflows/native-image-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
if: matrix.os == 'windows'
3333

3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
- name: Setup
3838
uses: ./.github/workflows/shared-setup

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Setup
2525
uses: ./.github/workflows/shared-setup

.github/workflows/unit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Setup
2525
uses: ./.github/workflows/shared-setup
@@ -48,7 +48,7 @@ jobs:
4848
if: matrix.os == 'windows'
4949

5050
- name: Checkout
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252

5353
- name: Setup
5454
uses: ./.github/workflows/shared-setup

deps.edn

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
{;; for disabling the official compiler
3737
:classpath-overrides {org.clojure/clojure nil}
3838
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.12.1"}
39-
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.4.6"}}
39+
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.5.0"}}
4040
:jvm-opts ["-Dclojure.storm.instrumentEnable=true"]}
4141

4242
:nrepl/jvm
@@ -59,7 +59,7 @@
5959
;;
6060
:lint-cache {:replace-paths ["src"]} ;; when building classpath we want to exclude resources
6161
;; so we do not pick up our own clj-kondo config exports
62-
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2025.06.05"}}
62+
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2025.07.28"}}
6363
:override-deps {org.clojure/clojure {:mvn/version "1.12.1"}}
6464
:main-opts ["-m" "clj-kondo.main"]}
6565

@@ -158,7 +158,7 @@
158158
;;
159159
;; Deployment
160160
;;
161-
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.9"}}
161+
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.10"}}
162162
:extra-paths ["src" "build"]
163163
:ns-default build}
164164

script/test_libs.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@
316316
:test-cmds ["bb test"]}
317317
{:name "clojure-mcp"
318318
:platforms [:clj]
319-
:version "0.1.7-alpha"
319+
:version "0.1.8-alpha"
320320
:github-release {:repo "bhauman/clojure-mcp"
321321
:via :tag
322322
:version-prefix "v"}

0 commit comments

Comments
 (0)