homebridge-eggtimer-plugin 1.1.2 → 1.1.3
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 +1 -1
- package/.github/workflows/automerge.yml +7 -8
- package/.github/workflows/build-homebridge2.0.yml +1 -1
- package/.github/workflows/build.yml +1 -1
- package/.github/workflows/corepack.yml +1 -1
- package/.github/workflows/npm-publish.yml +2 -2
- package/package.json +6 -6
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"
|
|
@@ -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 }}
|
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
- uses: pnpm/action-setup@v4
|
|
20
20
|
- run: |
|
|
21
21
|
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.
|
|
22
|
+
- uses: actions/setup-node@v4.4.0
|
|
23
23
|
with:
|
|
24
24
|
node-version: latest
|
|
25
25
|
cache: pnpm
|
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
steps:
|
|
14
14
|
- uses: actions/checkout@v4
|
|
15
15
|
- uses: pnpm/action-setup@v4
|
|
16
|
-
- uses: actions/setup-node@v4.
|
|
16
|
+
- uses: actions/setup-node@v4.4.0
|
|
17
17
|
with:
|
|
18
18
|
node-version: latest
|
|
19
19
|
cache: pnpm
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
ref: main
|
|
37
37
|
fetch-tags: true
|
|
38
38
|
- uses: pnpm/action-setup@v4
|
|
39
|
-
- uses: actions/setup-node@v4.
|
|
39
|
+
- uses: actions/setup-node@v4.4.0
|
|
40
40
|
with:
|
|
41
41
|
node-version: latest
|
|
42
42
|
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.3",
|
|
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.
|
|
35
|
+
"@eslint/js": "^9.27.0",
|
|
36
36
|
"@stylistic/eslint-plugin": "^4.2.0",
|
|
37
37
|
"@types/async-lock": "^1.4.2",
|
|
38
|
-
"@types/node": "^22.
|
|
38
|
+
"@types/node": "^22.15.21",
|
|
39
39
|
"@types/node-persist": "^3.1.8",
|
|
40
|
-
"eslint": "^9.
|
|
40
|
+
"eslint": "^9.27.0",
|
|
41
41
|
"homebridge": "^1.9.0",
|
|
42
42
|
"rimraf": "^6.0.1",
|
|
43
43
|
"ts-node": "^10.9.2",
|
|
44
|
-
"typescript": "^5.8.
|
|
45
|
-
"typescript-eslint": "^8.
|
|
44
|
+
"typescript": "^5.8.3",
|
|
45
|
+
"typescript-eslint": "^8.32.1"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"async-lock": "^1.4.1",
|