Skip to content

Commit d5565c4

Browse files
committed
fix(CI): push
1 parent b6e28b4 commit d5565c4

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/update-dependencies.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ jobs:
1616
- uses: actions/setup-node@v5
1717
with:
1818
node-version: 22
19-
- run: pnpm install
20-
- run: pnpm up --latest
19+
- name: Update dependencies
20+
run: |
21+
pnpm install
22+
pnpm up --latest
2123
- name: Commit changes
2224
run: |
23-
git config user.name "github-actions[bot]"
24-
git config user.email "github-actions[bot]@users.noreply.github.com"
2525
git add package.json pnpm-lock.yaml
2626
git commit -m "chore: update dependencies" || echo "No changes to commit"
27-
git push
27+
- name: Push changes
28+
run: git push
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)