-
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.
Fix a merge error and regenerate actions (#1177)
Fixes a merge error in #1167, executed `sbt ciGenerateGithubWorkflow` to regenerate GitHub actions.
- Loading branch information
1 parent
ffc24cf
commit ac0fadd
Showing
2 changed files
with
21 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 |
---|---|---|
|
@@ -23,19 +23,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.0.0 | ||
with: | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.4 | ||
- name: Check all code compiles | ||
run: sbt +Test/compile | ||
- name: Check artifacts build process | ||
|
@@ -48,19 +48,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.0.0 | ||
with: | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.4 | ||
- name: Check if the site workflow is up to date | ||
run: sbt ciCheckGithubWorkflow | ||
- name: Lint | ||
|
@@ -80,15 +80,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.0.0 | ||
with: | ||
distribution: corretto | ||
java-version: ${{ matrix.java }} | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.4 | ||
- name: Git Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: '0' | ||
- name: Test | ||
|
@@ -100,19 +100,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.0.0 | ||
with: | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.4 | ||
- name: Generate Readme | ||
run: sbt docs/generateReadme | ||
- name: Commit Changes | ||
|
@@ -174,19 +174,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.0.0 | ||
with: | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.4 | ||
- name: Release | ||
run: sbt ci-release | ||
env: | ||
|
@@ -203,21 +203,21 @@ jobs: | |
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} | ||
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.0.0 | ||
with: | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
uses: coursier/cache-action@v6.4.4 | ||
- name: Setup NodeJs | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 16.x | ||
registry-url: https://registry.npmjs.org | ||
|
@@ -234,7 +234,7 @@ jobs: | |
if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
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