Skip to content

Commit

Permalink
chore(ci): Add a dependency updater action to run weekly
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Nov 6, 2024
1 parent ca43686 commit 4b20d15
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4b20d15

Please sign in to comment.