orc-me 1.1.6 → 1.1.8

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.
@@ -12,9 +12,13 @@ on:
12
12
  jobs:
13
13
  build:
14
14
  runs-on: ubuntu-latest
15
+
16
+ # Skip Dependabot pull requests that fixes packages and vulnerabilities to trigger our CI/CD
17
+ if: ${{ github.actor != 'dependabot[bot]' }}
18
+
15
19
  steps:
16
- - uses: actions/checkout@v2
17
- - uses: actions/setup-node@v2
20
+ - uses: actions/checkout@v4
21
+ - uses: actions/setup-node@v3
18
22
  with:
19
23
  node-version: lts/*
20
24
  - run: npm install
@@ -23,9 +27,13 @@ jobs:
23
27
  publish-npm:
24
28
  needs: build
25
29
  runs-on: ubuntu-latest
30
+
31
+ # Skip Dependabot pull requests that fixes packages and vulnerabilities to trigger our CI/CD
32
+ if: ${{ github.actor != 'dependabot[bot]' }}
33
+
26
34
  steps:
27
- - uses: actions/checkout@v2
28
- - uses: actions/setup-node@v2
35
+ - uses: actions/checkout@v4
36
+ - uses: actions/setup-node@v3
29
37
  with:
30
38
  node-version: lts/*
31
39
  registry-url: https://registry.npmjs.org/
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * orchish - 👹 Generate a random orc name
3
- * @version: v1.1.6
3
+ * @version: v1.1.8
4
4
  * @link: https://github.com/tutyamxx/orc-me
5
5
  * @license: MIT
6
6
  **/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orc-me",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
4
4
  "description": "Generate a random orc name",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,6 +21,6 @@
21
21
  "author": "tuty",
22
22
  "license": "MIT",
23
23
  "devDependencies": {
24
- "jest": "^26.4.2"
24
+ "jest": "^29.7.0"
25
25
  }
26
26
  }