-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update action versions, change jdk to 17 for all workflows, relea…
…se for 11
- Loading branch information
1 parent
84a654c
commit 24b1e0c
Showing
2 changed files
with
27 additions
and
10 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 |
---|---|---|
|
@@ -18,11 +18,15 @@ jobs: | |
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout current branch | ||
uses: actions/checkout@v2.4.0 | ||
uses: actions/checkout@v4.2.0 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Scala and Java | ||
uses: olafurpg/setup-scala@v11 | ||
uses: actions/[email protected] | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
check-latest: true | ||
- name: Cache scala dependencies | ||
uses: coursier/cache-action@v6 | ||
- name: Lint code | ||
|
@@ -33,9 +37,13 @@ jobs: | |
timeout-minutes: 60 | ||
steps: | ||
- name: Checkout current branch | ||
uses: actions/checkout@v2.4.0 | ||
uses: actions/checkout@v4.2.0 | ||
- name: Setup Scala and Java | ||
uses: olafurpg/setup-scala@v11 | ||
uses: actions/[email protected] | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
check-latest: true | ||
- name: Cache scala dependencies | ||
uses: coursier/cache-action@v6 | ||
- name: Check Document Generation | ||
|
@@ -47,18 +55,20 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
java: ['zulu@1.17'] | ||
java: ['17'] | ||
scala: ['212', '213', '3'] | ||
platform: ['JVM', 'JS', 'Native'] | ||
steps: | ||
- name: Checkout current branch | ||
uses: actions/checkout@v2.4.0 | ||
uses: actions/checkout@v4.2.0 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Scala and Java | ||
uses: olafurpg/setup-scala@v11 | ||
uses: actions/setup-[email protected] | ||
with: | ||
distribution: zulu | ||
java-version: ${{ matrix.java }} | ||
check-latest: true | ||
- name: Install libuv | ||
run: sudo apt-get update && sudo apt-get install -y libuv1-dev | ||
- name: Cache scala dependencies | ||
|
@@ -80,11 +90,15 @@ jobs: | |
if: github.event_name != 'pull_request' | ||
steps: | ||
- name: Checkout current branch | ||
uses: actions/checkout@v2.4.0 | ||
uses: actions/checkout@v4.2.0 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Scala and Java | ||
uses: olafurpg/setup-scala@v11 | ||
uses: actions/[email protected] | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
check-latest: true | ||
- name: Cache scala dependencies | ||
uses: coursier/cache-action@v6 | ||
- name: Release artifacts | ||
|
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