Skip to content

Commit 387e978

Browse files
authored
refactor: updated action (#3071)
1 parent c46e46f commit 387e978

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/99-update-browserslist-database.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Update Browserslist database
22

33
on:
44
schedule:
5-
- cron: '0 0 * * 1' # Every Monday at 00:00 UTC
5+
- cron: '0 0 * * 1' # Every Monday at 00:00 UTC
66
workflow_dispatch:
77

88
jobs:
@@ -14,12 +14,12 @@ jobs:
1414
uses: actions/checkout@v4
1515
with:
1616
persist-credentials: false
17-
fetch-depth: 0 # Needed to create branches
17+
fetch-depth: 0 # Needed to create branches
1818

1919
- name: Setup Node.js
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version-file: ".nvmrc"
22+
node-version-file: '.nvmrc'
2323

2424
- name: Install dependencies
2525
run: npm ci
@@ -31,11 +31,11 @@ jobs:
3131
run: echo "COMMIT_MAIL=41898282+github-actions[bot]@users.noreply.github.com" >> .env
3232

3333
- name: Create Pull Request
34-
uses: peter-evans/create-pull-request@v6
34+
uses: peter-evans/create-pull-request@v7
3535
with:
3636
token: ${{ secrets.GITHUB_TOKEN }}
37-
commit-message: "chore: update Browserslist database"
38-
title: "chore: update Browserslist database"
37+
commit-message: 'chore: update Browserslist database'
38+
title: 'chore: update Browserslist database'
3939
body: |
4040
This PR updates the Browserslist database (`caniuse-lite`) to ensure up-to-date browser support data.
4141
Auto-generated by GitHub Actions.

0 commit comments

Comments
 (0)