Skip to content

Commit

Permalink
Merge pull request #83 from effigies/chore/upgrade
Browse files Browse the repository at this point in the history
chore(ci): Add a dependency updater action to run weekly
  • Loading branch information
effigies authored Nov 6, 2024
2 parents ca43686 + 4b20d15 commit 5e68633
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 5e68633

Please sign in to comment.