From 4b20d15229497aed24d48b9cabbbf8defd17edf1 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Wed, 6 Nov 2024 09:52:25 -0500 Subject: [PATCH] chore(ci): Add a dependency updater action to run weekly --- .github/workflows/dependencies.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/dependencies.yml diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml new file mode 100644 index 00000000..6494f2a1 --- /dev/null +++ b/.github/workflows/dependencies.yml @@ -0,0 +1,18 @@ +--- +name: Update dependencies + +on: + schedule: + - cron: "15 15 * * 1" + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + molt: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: hasundue/molt-action@v1