@hexonet/semantic-release-whmcs 5.0.4 → 5.0.5

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,9 +1,18 @@
1
1
  version: 2
2
2
  updates:
3
- - package-ecosystem: npm
3
+ - package-ecosystem: "npm"
4
4
  directory: "/"
5
5
  schedule:
6
- interval: daily
7
- open-pull-requests-limit: 10
6
+ interval: "daily"
8
7
  commit-message:
9
- prefix: chore
8
+ prefix: "fix"
9
+ prefix-development: "chore"
10
+ include: "scope"
11
+
12
+ - package-ecosystem: "github-actions"
13
+ directory: "/"
14
+ schedule:
15
+ interval: "daily"
16
+ commit-message:
17
+ prefix: "chore"
18
+ include: "scope"
@@ -10,14 +10,15 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  steps:
12
12
  - name: Checkout
13
- uses: actions/checkout@v3
13
+ uses: actions/checkout@v4
14
14
  with:
15
15
  fetch-depth: 0
16
16
  persist-credentials: false
17
17
  - name: Setup NodeJS ${{ vars.RTLDEV_MW_CI_NODE_VERSION }}
18
18
  uses: actions/setup-node@v3
19
19
  with:
20
- node-version: ${{ vars.RTLDEV_MW_CI_NODE_VERSION }}
20
+ node-version: "${{ vars.RTLDEV_MW_CI_NODE_VERSION }}"
21
+ check-latest: true
21
22
  cache: npm
22
23
  - name: Install dependencies
23
24
  run: npm ci
@@ -11,16 +11,15 @@ on:
11
11
 
12
12
  jobs:
13
13
  test:
14
- name: Test @ NodeJS - x86 - ubuntu-latest
14
+ name: Test @ ubuntu-latest
15
15
  runs-on: ubuntu-latest
16
16
  strategy:
17
17
  matrix:
18
- node-version:
19
- - ${{ vars.RTLDEV_MW_CI_NODE_VERSION }}
18
+ node-version: ${{ fromJson(vars.RTLDEV_MW_CI_NODE_MATRIX) }}
20
19
 
21
20
  steps:
22
21
  - name: Checkout
23
- uses: actions/checkout@v3
22
+ uses: actions/checkout@v4
24
23
  - name: Setup NodeJS ${{ matrix.node-version }}
25
24
  uses: actions/setup-node@v3
26
25
  with:
@@ -33,13 +32,28 @@ jobs:
33
32
  - name: Tests
34
33
  env:
35
34
  GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
36
- GITHUB_REPO: ${{ secrets.GH_REPO }}
35
+ GITHUB_REPO: ${{ vars.GH_REPO }}
37
36
  WHMCSMP_LOGIN: ${{ secrets.WHMCSMP_LOGIN }}
38
37
  WHMCSMP_PASSWORD: ${{ secrets.WHMCSMP_PASSWORD }}
39
- WHMCSMP_PRODUCTID: ${{ secrets.WHMCSMP_PRODUCTID }}
40
- WHMCSMP_MINVERSION: ${{ secrets.WHMCSMP_MINVERSION }}
41
- DEBUG: ${{ secrets.DEBUG }}
38
+ WHMCSMP_PRODUCTID: ${{ vars.WHMCSMP_PRODUCTID }}
39
+ WHMCSMP_MINVERSION: ${{ vars.WHMCSMP_MINVERSION }}
40
+ DEBUG: ${{ vars.DEBUG }}
42
41
  run: npm run test
42
+
43
+ perform_codeql_analysis:
44
+ name: Perform CodeQL Analysis
45
+ runs-on: ubuntu-latest
46
+ needs: test
47
+ steps:
48
+ - name: Checkout
49
+ uses: actions/checkout@v4
50
+ - name: Setup NodeJS ${{ matrix.node-version }}
51
+ uses: actions/setup-node@v3
52
+ with:
53
+ node-version: ${{ matrix.node-version }}
54
+ cache: npm
55
+ - name: Install dependencies
56
+ run: npm ci
43
57
  - name: Initialize CodeQL
44
58
  uses: github/codeql-action/init@v2
45
59
  with:
package/HISTORY.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [5.0.5](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.4...v5.0.5) (2023-10-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump puppeteer from 21.3.8 to 21.4.0 ([44d0227](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/44d02273e49562db8281730a75bfc3b1b8e013ea))
7
+
1
8
  ## [5.0.4](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.3...v5.0.4) (2023-10-09)
2
9
 
3
10
 
package/lib/puppet.js CHANGED
@@ -17,7 +17,7 @@ export default async (context) => {
17
17
  timeout: 240000,
18
18
  },
19
19
  selectorOpts: {
20
- timeout: 40000,
20
+ timeout: 60000,
21
21
  },
22
22
  logger: context.logger,
23
23
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hexonet/semantic-release-whmcs",
3
3
  "description": "`semantic-release` plugin for auto-publishing on WHMCS marketplace",
4
- "version": "5.0.4",
4
+ "version": "5.0.5",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "publishConfig": {