Skip to content
This repository has been archived by the owner on Nov 12, 2023. It is now read-only.

Commit

Permalink
ci: add action to check for outdated deps
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
TimoKramer committed Mar 23, 2023
1 parent acba31c commit 09f4fac
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dependency-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Batch Dependency Update

on:
schedule:
- cron: '0 7 * * 1'

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout Latest Commit
uses: actions/[email protected]

- name: Check deps
uses: nnichols/clojure-dependency-update-action@v4
with:
github-token: ${{ secrets.github_token }}
skips: "pom boot leiningen"
batch: true
branch: "main"

0 comments on commit 09f4fac

Please sign in to comment.