homebridge-eggtimer-plugin 1.1.2 → 1.1.4
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.
- package/.github/dependabot.yml +4 -1
- package/.github/workflows/audit.yml +3 -1
- package/.github/workflows/automerge.yml +7 -8
- package/.github/workflows/build-homebridge2.0.yml +4 -1
- package/.github/workflows/build.yml +3 -1
- package/.github/workflows/corepack.yml +1 -1
- package/.github/workflows/npm-publish.yml +5 -2
- package/package.json +8 -8
package/.github/dependabot.yml
CHANGED
|
@@ -13,7 +13,10 @@ updates:
|
|
|
13
13
|
interval: "monthly"
|
|
14
14
|
|
|
15
15
|
# Maintain dependencies for npm
|
|
16
|
-
- package-ecosystem: "
|
|
16
|
+
- package-ecosystem: "npm"
|
|
17
17
|
directory: "/"
|
|
18
18
|
schedule:
|
|
19
19
|
interval: "monthly"
|
|
20
|
+
allow:
|
|
21
|
+
- dependency-type: "production"
|
|
22
|
+
rebase-strategy: "disabled"
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
3
3
|
|
|
4
4
|
name: Audit
|
|
5
|
+
permissions:
|
|
6
|
+
contents: read
|
|
5
7
|
|
|
6
8
|
on:
|
|
7
9
|
|
|
@@ -17,7 +19,7 @@ jobs:
|
|
|
17
19
|
steps:
|
|
18
20
|
- uses: actions/checkout@v4
|
|
19
21
|
- uses: pnpm/action-setup@v4
|
|
20
|
-
- uses: actions/setup-node@v4.
|
|
22
|
+
- uses: actions/setup-node@v4.4.0
|
|
21
23
|
with:
|
|
22
24
|
node-version: latest
|
|
23
25
|
cache: pnpm
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
name: Auto-merge
|
|
2
2
|
on: pull_request
|
|
3
3
|
|
|
4
|
-
permissions:
|
|
5
|
-
pull-requests: write
|
|
6
|
-
contents: write
|
|
7
|
-
|
|
8
4
|
jobs:
|
|
9
5
|
automerge:
|
|
6
|
+
permissions:
|
|
7
|
+
pull-requests: write
|
|
8
|
+
contents: write
|
|
10
9
|
runs-on: ubuntu-latest
|
|
11
10
|
if: github.actor == 'dependabot[bot]' || ((startsWith(github.event.pull_request.title, 'Bump to version ') || startsWith(github.event.pull_request.title, 'Update PNPM')) && (github.actor == 'github-actions' || github.actor == 'teh-hippo'))
|
|
12
11
|
steps:
|
|
13
|
-
- uses:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
- run: gh pr merge --rebase --delete-branch --auto "${{ github.event.pull_request.number }}"
|
|
14
|
+
env:
|
|
15
|
+
GH_TOKEN: ${{ github.token }}
|
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
name: Build Homebridge 2.x
|
|
5
5
|
|
|
6
|
+
permissions:
|
|
7
|
+
contents: read
|
|
8
|
+
|
|
6
9
|
on:
|
|
7
10
|
pull_request:
|
|
8
11
|
schedule:
|
|
@@ -19,7 +22,7 @@ jobs:
|
|
|
19
22
|
- uses: pnpm/action-setup@v4
|
|
20
23
|
- run: |
|
|
21
24
|
sed -i -e 's/"homebridge": "\^[0-9]\.[0-9]\.[0-9]/"homebridge": "^2.0.0-beta.0/g' package.json
|
|
22
|
-
- uses: actions/setup-node@v4.
|
|
25
|
+
- uses: actions/setup-node@v4.4.0
|
|
23
26
|
with:
|
|
24
27
|
node-version: latest
|
|
25
28
|
cache: pnpm
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
3
3
|
|
|
4
4
|
name: Build
|
|
5
|
+
permissions:
|
|
6
|
+
contents: read
|
|
5
7
|
|
|
6
8
|
on: [pull_request]
|
|
7
9
|
|
|
@@ -19,7 +21,7 @@ jobs:
|
|
|
19
21
|
- uses: actions/checkout@v4
|
|
20
22
|
- uses: pnpm/action-setup@v4
|
|
21
23
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
22
|
-
uses: actions/setup-node@v4.
|
|
24
|
+
uses: actions/setup-node@v4.4.0
|
|
23
25
|
with:
|
|
24
26
|
node-version: ${{ matrix.node-version }}
|
|
25
27
|
cache: pnpm
|
|
@@ -10,10 +10,13 @@ on:
|
|
|
10
10
|
jobs:
|
|
11
11
|
publish:
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
|
+
permissions:
|
|
14
|
+
contents: read
|
|
15
|
+
packages: write
|
|
13
16
|
steps:
|
|
14
17
|
- uses: actions/checkout@v4
|
|
15
18
|
- uses: pnpm/action-setup@v4
|
|
16
|
-
- uses: actions/setup-node@v4.
|
|
19
|
+
- uses: actions/setup-node@v4.4.0
|
|
17
20
|
with:
|
|
18
21
|
node-version: latest
|
|
19
22
|
cache: pnpm
|
|
@@ -36,7 +39,7 @@ jobs:
|
|
|
36
39
|
ref: main
|
|
37
40
|
fetch-tags: true
|
|
38
41
|
- uses: pnpm/action-setup@v4
|
|
39
|
-
- uses: actions/setup-node@v4.
|
|
42
|
+
- uses: actions/setup-node@v4.4.0
|
|
40
43
|
with:
|
|
41
44
|
node-version: latest
|
|
42
45
|
cache: pnpm
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-eggtimer-plugin",
|
|
3
3
|
"displayName": "Homebridge Eggtimer Plugin",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.4",
|
|
5
5
|
"description": "Egg Timers for Homebridge: https://github.com/nfarina/homebridge",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"keywords": [
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"homebridge": ">=1.3.5 || ^2.0.0-beta.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@eslint/js": "^9.
|
|
36
|
-
"@stylistic/eslint-plugin": "^4.
|
|
35
|
+
"@eslint/js": "^9.34.0",
|
|
36
|
+
"@stylistic/eslint-plugin": "^4.4.1",
|
|
37
37
|
"@types/async-lock": "^1.4.2",
|
|
38
|
-
"@types/node": "^22.
|
|
38
|
+
"@types/node": "^22.17.2",
|
|
39
39
|
"@types/node-persist": "^3.1.8",
|
|
40
|
-
"eslint": "^9.
|
|
41
|
-
"homebridge": "^1.
|
|
40
|
+
"eslint": "^9.34.0",
|
|
41
|
+
"homebridge": "^1.11.0",
|
|
42
42
|
"rimraf": "^6.0.1",
|
|
43
43
|
"ts-node": "^10.9.2",
|
|
44
|
-
"typescript": "^5.
|
|
45
|
-
"typescript-eslint": "^8.
|
|
44
|
+
"typescript": "^5.9.2",
|
|
45
|
+
"typescript-eslint": "^8.40.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"async-lock": "^1.4.1",
|