Skip to content

Commit

Permalink
build: new Github jobw - dependency-submission (#352)
Browse files Browse the repository at this point in the history
Signed-off-by: FabioPinheiro <fabiomgpinheiro@gmail.com>
  • Loading branch information
FabioPinheiro authored Sep 30, 2024
1 parent 2c28663 commit 03855c2
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/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: adopt@1.11
- 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/cache-action@v6.3
- 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 03855c2

Please sign in to comment.