Skip to content

Commit

Permalink
Merge pull request #23 from rafaeldelboni/refact/jdk-21
Browse files Browse the repository at this point in the history
refact: jdk 21
  • Loading branch information
rafaeldelboni authored Jul 20, 2024
2 parents 67b5b76 + 236f002 commit bc29052
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/flyio-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '11'
distribution: 'temurin'
java-version: '21'

- name: Install clojure cli
uses: DeLaGuardo/setup-clojure@master
Expand All @@ -55,8 +55,8 @@ jobs:
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '11'
distribution: 'temurin'
java-version: '21'

- name: Install clojure cli
uses: DeLaGuardo/setup-clojure@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '11'
distribution: 'temurin'
java-version: '21'

- name: Install clojure cli
uses: DeLaGuardo/setup-clojure@master
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dockerfile for fly.io deploy

FROM openjdk:11-slim-buster AS runtime
FROM eclipse-temurin:21 AS runtime
COPY service.jar /app.jar

ENV JAVA_OPTS="-XX:+UseContainerSupport -XX:InitialRAMPercentage=50 -XX:MaxRAMPercentage=90 -XshowSettings:vm"
Expand Down

0 comments on commit bc29052

Please sign in to comment.