Skip to content

Commit

Permalink
👷 Run "Outdated Dependency Check" every month
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Sep 26, 2024
1 parent d97adca commit 8a0bcc7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/outdated-dependency-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Outdated Dependency Check

on:
# This can be used to automatically check for outdated dependencies once a month
schedule:
- cron: "0 5 1 * *" # run at midnight UTC
# This can be used to allow manually triggering dependency checks from the web interface
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
name: Outdated Dependency Check

steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Check for outdated dependencies
run: ./mvnw com.giovds:outdated-maven-plugin:check

0 comments on commit 8a0bcc7

Please sign in to comment.