-
-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (28 loc) · 836 Bytes
/
update-deps.yml
File metadata and controls
33 lines (28 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Update dependencies
on:
workflow_dispatch:
schedule:
- cron: "0 0 1 * *"
jobs:
update:
strategy:
matrix:
node-version: [20.x]
name: Update all dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npx npm-check-updates -u # Update dependencies
- run: rm -Rf node_modules package-lock.json
- run: npm install
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
commit-message: "build: update dependencies to the latest version"
title: Update dependencies to the latest version