zigbee-herdsman 4.0.0 → 4.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,39 +0,0 @@
1
- name: Update dependencies
2
-
3
- on:
4
- workflow_dispatch:
5
- schedule:
6
- - cron: '0 0 * * 0'
7
-
8
- permissions:
9
- contents: write
10
- pull-requests: write
11
-
12
- jobs:
13
- update-dependencies:
14
- if: github.repository == 'Koenkk/zigbee-herdsman'
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: actions/checkout@v4
18
- with:
19
- token: ${{ secrets.GH_TOKEN }}
20
- - uses: pnpm/action-setup@v4
21
- - uses: actions/setup-node@v4
22
- with:
23
- node-version: 22
24
- cache: pnpm
25
- - run: |
26
- pnpm self-update
27
- pnpm up --latest
28
- - uses: peter-evans/create-pull-request@v7
29
- id: cpr
30
- with:
31
- commit-message: 'fix(ignore): update dependencies'
32
- branch: 'deps/all'
33
- title: 'fix(ignore): update dependencies'
34
- token: ${{ secrets.GH_TOKEN }}
35
- - uses: peter-evans/create-or-update-comment@v4
36
- if: ${{ steps.cpr.outputs.pull-request-number }}
37
- with:
38
- issue-number: ${{ steps.cpr.outputs.pull-request-number }}
39
- body: 'CC: @Koenkk'