Unverified Commit b4d07491 authored by Nikolay Igotti's avatar Nikolay Igotti Committed by GitHub

Use JDK11 everywhere

parent 6babe682
...@@ -23,7 +23,10 @@ jobs: ...@@ -23,7 +23,10 @@ jobs:
steps: steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
# Runs a set of commands using the runners shell # Runs a set of commands using the runners shell
- name: Run a multi-line script - name: Run a multi-line script
run: | run: |
...@@ -53,9 +56,11 @@ jobs: ...@@ -53,9 +56,11 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: microsoft/setup-msbuild@v1 - uses: microsoft/setup-msbuild@v1
- uses: ilammy/msvc-dev-cmd@v1 - uses: ilammy/msvc-dev-cmd@v1
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- shell: bash - shell: bash
run: | run: |
cd ./skiko cd ./skiko
./gradlew publishToMavenLocal ./gradlew publishToMavenLocal
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment