From cd4b571dd38d51e5462bf8e78d95db58943981a6 Mon Sep 17 00:00:00 2001 From: Rick Moynihan Date: Tue, 21 Dec 2021 12:51:31 +0000 Subject: [PATCH] Add Github action to update clojure dependencies --- .github/workflows/main.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..069b6e409 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,18 @@ +name: Clojure Dependency Checking + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Checkout Latest Commit + uses: actions/checkout@v1 + + - name: Check deps + uses: nnichols/clojure-dependency-update-action@v3 + with: + directories: drafter drafter-client + github-token: ${{ secrets.github_token }}