Skip to content

Commit

Permalink
Update CI to Java 17.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruedigergad committed Oct 26, 2024
1 parent e161283 commit dca00ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ orbs:
jobs:
run_tests_job:
docker:
- image: circleci/clojure:lein-2.9.5
- image: cimg/clojure:1.11.1-openjdk-17.0
working_directory: ~/repo
environment:
LEIN_ROOT: "true"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/lein_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Install dependencies
run: lein deps
- name: Run tests
Expand Down

0 comments on commit dca00ff

Please sign in to comment.