-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
XENFRED-4897 Set Ubuntu version to 20.04 + Set Java version to v17
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ env: | |
-Dorg.gradle.project.eu.xenit.cloudsmith.password=${{ secrets.CLOUDSMITH_APIKEY }} | ||
jobs: | ||
continuousIntegration: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: webfactory/[email protected] | ||
|
@@ -24,10 +24,11 @@ jobs: | |
- name: init submodules | ||
run: | | ||
git submodule update --init --remote | ||
- name: Set up JDK 1.11 | ||
uses: actions/setup-java@v1 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 1.11 | ||
distribution: temurin | ||
java-version: 17 | ||
- name: Login to Docker | ||
uses: docker/login-action@v2 | ||
with: | ||
|