diff options
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | sw-server/Dockerfile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 909ab1aa..999bd78d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,10 +12,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up JDK 13 + - name: Set up JDK 15 uses: actions/setup-java@v1.4.3 with: - java-version: 13 + java-version: 15 - name: Gradle build cache uses: actions/cache@v2.1.1 diff --git a/sw-server/Dockerfile b/sw-server/Dockerfile index 740c2514..a8dd4ff6 100644 --- a/sw-server/Dockerfile +++ b/sw-server/Dockerfile @@ -1,4 +1,4 @@ -FROM openjdk:11-jre +FROM openjdk:15 EXPOSE 80 |