is-object-empty2 1.1.0 → 1.1.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.
@@ -7,18 +7,20 @@ on:
7
7
  push:
8
8
  branches: [ main ]
9
9
  pull_request:
10
- branches: [ main ]
10
+ branches:
11
+ - main
12
+ - '!dependabot/**'
11
13
 
12
14
  jobs:
13
15
  build:
14
16
  runs-on: ubuntu-latest
15
17
 
16
18
  # Skip Dependabot PRs for CI/CD
17
- if: ${{ github.actor != 'dependabot[bot]' }}
19
+ if: github.actor != 'dependabot[bot]' && !startsWith(github.head_ref, 'dependabot/')
18
20
 
19
21
  steps:
20
- - uses: actions/checkout@v4
21
- - uses: actions/setup-node@v4
22
+ - uses: actions/checkout@v6
23
+ - uses: actions/setup-node@v6
22
24
  with:
23
25
  node-version: lts/krypton
24
26
 
@@ -30,7 +32,7 @@ jobs:
30
32
  runs-on: ubuntu-latest
31
33
 
32
34
  # Skip Dependabot PRs
33
- if: ${{ github.actor != 'dependabot[bot]' }}
35
+ if: github.actor != 'dependabot[bot]' && !startsWith(github.head_ref, 'dependabot/')
34
36
 
35
37
  # Required for OIDC Trusted Publishing
36
38
  permissions:
@@ -38,8 +40,8 @@ jobs:
38
40
  id-token: write # 👈 REQUIRED for Trusted Publishing
39
41
 
40
42
  steps:
41
- - uses: actions/checkout@v4
42
- - uses: actions/setup-node@v4
43
+ - uses: actions/checkout@v6
44
+ - uses: actions/setup-node@v6
43
45
  with:
44
46
  node-version: lts/krypton
45
47
  registry-url: https://registry.npmjs.org/
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * is-object-empty2 - 📦 Tiny utility to check if a value is a plain empty object in JavaScript and TypeScript
3
- * @version: v1.1.0
3
+ * @version: v1.1.2
4
4
  * @link: https://github.com/tutyamxx/is-object-empty2
5
5
  * @license: MIT
6
6
  **/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "is-object-empty2",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "📦 Tiny utility to check if a value is a plain empty object in JavaScript or TypeScript",
5
5
  "main": "index.js",
6
6
  "module": "index.js",