-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: add job Update Dependency Graph
Signed-off-by: FabioPinheiro <[email protected]>
- Loading branch information
1 parent
d81b4f0
commit 142ed4a
Showing
1 changed file
with
37 additions
and
0 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,37 @@ | ||
# See https://github.com/marketplace/actions/sbt-dependency-submission | ||
name: Update Dependency Graph | ||
on: | ||
# push: | ||
# branches: | ||
# - master # default branch of the project | ||
schedule: | ||
- cron: "0 20 * * *" | ||
workflow_dispatch: | ||
jobs: | ||
dependency-graph: | ||
name: Update Dependency Graph | ||
runs-on: ubuntu-latest # or windows-latest, or macOS-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Java and Scala | ||
uses: olafurpg/setup-scala@v14 | ||
with: | ||
java-version: [email protected] | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "18" # or whatever | ||
# - name: Setup Scala.JS | ||
# uses: japgolly/setup-scalajs@v1 | ||
- name: Cache sbt | ||
uses: coursier/[email protected] | ||
# - name: npm install | ||
# run: npm install | ||
- uses: scalacenter/sbt-dependency-submission@v2 | ||
with: | ||
working-directory: ./ | ||
# modules-ignore: | ||
# identus-mediator_3 | ||
# mediator_3 | ||
# webapp_sjs1_3 | ||
configs-ignore: test scala-tool scala-doc-tool |