Skip to content

Commit

Permalink
build: add job Update Dependency Graph
Browse files Browse the repository at this point in the history
Signed-off-by: FabioPinheiro <[email protected]>
  • Loading branch information
FabioPinheiro committed Oct 18, 2024
1 parent d81b4f0 commit 142ed4a
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/sbt-dependency-submission.yml
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

0 comments on commit 142ed4a

Please sign in to comment.