Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: add dependency checking #2100

Merged
merged 3 commits into from Jul 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/dependency-graph.yml
@@ -0,0 +1,18 @@
name: Update Dependency Graph

on:
push:
branches:
- main # default branch of the project

jobs:
update-graph:
name: Update Dependency Graph
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: scalacenter/sbt-dependency-submission@v2
with:
## Optional: Define the working directory of your build.
## It should contain the build.sbt file.
working-directory: './'
22 changes: 22 additions & 0 deletions .github/workflows/scala-steward.yml
@@ -0,0 +1,22 @@
name: Launch Scala Steward

# This workflow will launch at 00:00 every Sunday
on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
subotic marked this conversation as resolved.
Show resolved Hide resolved

jobs:
scala-steward:
runs-on: ubuntu-latest
name: Launch Scala Steward
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Launch Scala Steward
uses: scala-steward-org/scala-steward-action@v2
with:
github-token: ${{ secrets.GH_TOKEN }}