-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue-988
- Loading branch information
Showing
27 changed files
with
888 additions
and
530 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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# Scala Steward: Reformat with scalafmt 3.7.10 | ||
a8871d8d1aaea8d735d126676077829c3b3073a0 | ||
|
||
# Scala Steward: Reformat with scalafmt 3.7.14 | ||
021c238deea31b591ea19cfb5187666acebc5456 |
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
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
name: CI | ||
env: | ||
JDK_JAVA_OPTIONS: -XX:+PrintCommandLineFlags -Xms6G -Xmx6G -Xss4M -XX:+UseG1GC | ||
JVM_OPTS: -XX:+PrintCommandLineFlags -Xms6G -Xmx6G -Xss4M -XX:+UseG1GC | ||
'on': | ||
workflow_dispatch: {} | ||
release: | ||
|
@@ -14,25 +13,26 @@ env: | |
branches: | ||
- master | ||
- series/0.x | ||
pull_request: {} | ||
create: {} | ||
pull_request: | ||
branches-ignore: | ||
- gh-pages | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3.5.0 | ||
uses: actions/checkout@v4.1.0 | ||
with: | ||
fetch-depth: '0' | ||
- name: Install libuv | ||
run: sudo apt-get update && sudo apt-get install -y libuv1-dev | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3.11.0 | ||
uses: actions/setup-java@v3.13.0 | ||
with: | ||
distribution: temurin | ||
java-version: '8' | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
|
@@ -48,16 +48,16 @@ jobs: | |
continue-on-error: false | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3.5.0 | ||
uses: actions/checkout@v4.1.0 | ||
with: | ||
fetch-depth: '0' | ||
- name: Install libuv | ||
run: sudo apt-get update && sudo apt-get install -y libuv1-dev | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3.11.0 | ||
uses: actions/setup-java@v3.13.0 | ||
with: | ||
distribution: temurin | ||
java-version: '8' | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
|
@@ -73,22 +73,22 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
java: | ||
- '8' | ||
- '11' | ||
- '17' | ||
- '21' | ||
steps: | ||
- name: Install libuv | ||
run: sudo apt-get update && sudo apt-get install -y libuv1-dev | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3.11.0 | ||
uses: actions/setup-java@v3.13.0 | ||
with: | ||
distribution: temurin | ||
distribution: corretto | ||
java-version: ${{ matrix.java }} | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
- name: Git Checkout | ||
uses: actions/checkout@v3.5.0 | ||
uses: actions/checkout@v4.1.0 | ||
with: | ||
fetch-depth: '0' | ||
- name: Test | ||
|
@@ -100,16 +100,16 @@ jobs: | |
if: ${{ github.event_name == 'push' }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3.5.0 | ||
uses: actions/checkout@v4.1.0 | ||
with: | ||
fetch-depth: '0' | ||
- name: Install libuv | ||
run: sudo apt-get update && sudo apt-get install -y libuv1-dev | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3.11.0 | ||
uses: actions/setup-java@v3.13.0 | ||
with: | ||
distribution: temurin | ||
java-version: '8' | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
|
@@ -129,7 +129,7 @@ jobs: | |
app_private_key: ${{ secrets.APP_PRIVATE_KEY }} | ||
- name: Create Pull Request | ||
id: cpr | ||
uses: peter-evans/[email protected].0 | ||
uses: peter-evans/[email protected].2 | ||
with: | ||
body: |- | ||
Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin. | ||
|
@@ -174,16 +174,16 @@ jobs: | |
if: ${{ github.event_name != 'pull_request' }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3.5.0 | ||
uses: actions/checkout@v4.1.0 | ||
with: | ||
fetch-depth: '0' | ||
- name: Install libuv | ||
run: sudo apt-get update && sudo apt-get install -y libuv1-dev | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3.11.0 | ||
uses: actions/setup-java@v3.13.0 | ||
with: | ||
distribution: temurin | ||
java-version: '8' | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
|
@@ -203,16 +203,16 @@ jobs: | |
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3.5.0 | ||
uses: actions/checkout@v4.1.0 | ||
with: | ||
fetch-depth: '0' | ||
- name: Install libuv | ||
run: sudo apt-get update && sudo apt-get install -y libuv1-dev | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3.11.0 | ||
uses: actions/setup-java@v3.13.0 | ||
with: | ||
distribution: temurin | ||
java-version: '8' | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
|
@@ -234,7 +234,7 @@ jobs: | |
if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3.5.0 | ||
uses: actions/checkout@v4.1.0 | ||
with: | ||
fetch-depth: '0' | ||
- name: notify the main repo about the new release of docs package | ||
|
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 |
---|---|---|
|
@@ -15,12 +15,13 @@ jobs: | |
benchmark: | ||
name: Profile benchmarks | ||
runs-on: ubuntu-latest | ||
if: ${{ !github.event.pull_request.head.repo.fork }} # comes from https://github.com/orgs/community/discussions/25217#discussioncomment-3246904 | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Java | ||
uses: actions/setup-java@v3.11.0 | ||
uses: actions/setup-java@v3.12.0 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
|
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 |
---|---|---|
|
@@ -13,4 +13,9 @@ jobs: | |
name: Scala Steward | ||
steps: | ||
- name: Scala Steward | ||
uses: scala-steward-org/[email protected] | ||
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version=3.7.10 | ||
version=3.7.14 | ||
project.git = true | ||
maxColumn = 120 | ||
align { | ||
|
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
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.9.2 | ||
sbt.version=1.9.6 |
Oops, something went wrong.