Skip to content

Monitor dependencies with Dependabot #9

Monitor dependencies with Dependabot

Monitor dependencies with Dependabot #9

name: Monitor dependencies with Dependabot
on:
schedule:
- cron: '25 8,13 * * 1,2,3,4,5'
- cron: '25 13 * * 0,6'
jobs:
dependabot:
name: Monitor dependencies with Dependabot
runs-on: ubuntu-20.04
permissions: # The Dependency Submission API requires write permission
contents: write
steps:
# JAVA 17
- name: 'Java 17'
uses: actions/[email protected]
with:
java-version: 17
cache: 'gradle'
- uses: actions/checkout@v3 # ratchet:actions/checkout@v3
- name: Run snapshot action
uses: mikepenz/[email protected]
with:
fail-on-error: true
gradle-dependency-path: "build.gradle.kts"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}