-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 changed file
with
16 additions
and
16 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 |
---|---|---|
|
@@ -22,19 +22,19 @@ jobs: | |
continue-on-error: true | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
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.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.5 | ||
- name: Check all code compiles | ||
run: sbt +Test/compile | ||
- name: Check artifacts build process | ||
|
@@ -47,19 +47,19 @@ jobs: | |
continue-on-error: false | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
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.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.5 | ||
- name: Check if the site workflow is up to date | ||
run: sbt ciCheckGithubWorkflow | ||
- name: Lint | ||
|
@@ -79,15 +79,15 @@ jobs: | |
- name: Install libuv | ||
run: sudo apt-get update && sudo apt-get install -y libuv1-dev | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
distribution: corretto | ||
java-version: ${{ matrix.java }} | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.5 | ||
- name: Git Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: '0' | ||
- name: Test | ||
|
@@ -99,19 +99,19 @@ jobs: | |
if: ${{ github.event_name == 'push' }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
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.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.5 | ||
- name: Generate Readme | ||
run: sbt docs/generateReadme | ||
- name: Commit Changes | ||
|
@@ -128,7 +128,7 @@ jobs: | |
app_private_key: ${{ secrets.APP_PRIVATE_KEY }} | ||
- name: Create Pull Request | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v5.0.2 | ||
uses: peter-evans/create-pull-request@v6.0.2 | ||
with: | ||
body: |- | ||
Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin. | ||
|
@@ -173,19 +173,19 @@ jobs: | |
if: ${{ github.event_name != 'pull_request' }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
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.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.5 | ||
- name: Release | ||
run: sbt ci-release | ||
env: | ||
|