Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ jobs:
distribution: 'temurin'
java-version: '21'

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.5
with:
lein: 2.11.2

# Ubuntu Repos on Azure fail often. Attempt to install before other
# long-running operations.
# xmllinter for tests checks
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ jobs:
with:
# Disabling shallow clone is recommended for improving relevancy of reporting for sonar
fetch-depth: 0

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.5
with:
lein: 2.11.2

- name: Extract branch name and substitute slashes
shell: bash
working-directory: code
Expand Down
6 changes: 3 additions & 3 deletions code/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
:aot [com.sixsq.nuvla.server.ring]

:dependencies
[[aleph "0.7.1"]
[[aleph "0.8.2"]
[environ "1.2.0"]
[ring/ring-core "1.12.1"]
[org.clojure/clojure "1.11.2"]
[ring/ring-core "1.13.0"]
[org.clojure/clojure "1.12.0"]
[org.clojure/tools.logging "1.3.0"]
[org.slf4j/slf4j-api ~slf4j-version]
[org.slf4j/log4j-over-slf4j ~slf4j-version]
Expand Down