Skip to content

Commit 5e68633

Browse files
authored
Merge pull request #83 from effigies/chore/upgrade
chore(ci): Add a dependency updater action to run weekly
2 parents ca43686 + 4b20d15 commit 5e68633

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/dependencies.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Update dependencies
3+
4+
on:
5+
schedule:
6+
- cron: "15 15 * * 1"
7+
workflow_dispatch:
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
molt:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: hasundue/molt-action@v1

0 commit comments

Comments
 (0)