-
-
Notifications
You must be signed in to change notification settings - Fork 42
40 lines (33 loc) · 1.01 KB
/
update-deps.yml
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
34
35
36
37
38
39
40
name: Update Fontsource Dependencies
on:
repository_dispatch:
types: [update-deps]
workflow_dispatch:
jobs:
update-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Enable PNPM
uses: pnpm/action-setup@v2
- name: Set node version to 20
uses: actions/setup-node@v3
with:
node-version: "20"
cache: "pnpm"
- name: Install
run: pnpm install --frozen-lockfile
- name: Update
run: pnpm up --latest
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore: update dependencies"
title: Update Fontsource Dependencies 🎉
body: |
This PR updates the Fontsource dependencies to the latest versions.
It was created automatically by a GitHub Action.
branch: update-fontsource-deps
delete-branch: true
labels: dependencies