Skip to content

Commit

Permalink
ci: add nightly dependency report
Browse files Browse the repository at this point in the history
  • Loading branch information
bbortt committed Feb 6, 2025
1 parent 916005b commit b3a91b5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: nightly

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Dependency Report
run: mvn --no-transfer-progress versions:display-dependency-updates

0 comments on commit b3a91b5

Please sign in to comment.