-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
33 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,7 +2,6 @@ name: CI | |
|
||
env: | ||
JDK_JAVA_OPTIONS: -XX:+PrintCommandLineFlags -XX:MaxMetaspaceSize=4G -Xmx4G -Xss8M # JDK_JAVA_OPTIONS is _the_ env. variable to use for modern Java | ||
JVM_OPTS: -XX:+PrintCommandLineFlags -XX:MaxMetaspaceSize=4G -Xmx4G -Xss8M # for Java 8 only (sadly, it is not modern enough for JDK_JAVA_OPTIONS) | ||
NODE_OPTIONS: --max_old_space_size=6144 | ||
|
||
on: | ||
|
@@ -77,7 +76,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: 8 # ensure it works on 8 because we publish for 8 | ||
java-version: 11 # ensure it works on 11 because we publish for 11 | ||
check-latest: true | ||
- name: Setup NodeJs | ||
uses: actions/setup-node@v4 | ||
|
@@ -141,7 +140,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
java: ['8', '11'] | ||
java: ['11', '17', '21'] | ||
platform: ['JVM'] | ||
steps: | ||
- name: Checkout current branch | ||
|
@@ -207,7 +206,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: '8' | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
|
@@ -274,7 +273,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: 8 # publish for 8 | ||
java-version: 11 # publish for 11 | ||
check-latest: true | ||
- name: Cache scala dependencies | ||
uses: coursier/cache-action@v6 | ||
|
@@ -310,7 +309,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: '8' | ||
java-version: '11' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
|
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Scala Steward | ||
|
||
# This workflow will launch everyday at 00:00 | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
scala-steward: | ||
timeout-minutes: 45 | ||
runs-on: ubuntu-latest | ||
name: Scala Steward | ||
steps: | ||
- name: Scala Steward | ||
uses: scala-steward-org/[email protected] | ||
with: | ||
github-app-id: ${{ secrets.SCALA_STEWARD_GITHUB_APP_ID }} | ||
github-app-installation-id: ${{ secrets.SCALA_STEWARD_GITHUB_APP_INSTALLATION_ID }} | ||
github-app-key: ${{ secrets.SCALA_STEWARD_GITHUB_APP_PRIVATE_KEY }} | ||
github-app-auth-only: true |
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