@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.
- package/.github/dependabot.yml +13 -4
- package/.github/workflows/release.yml +3 -2
- package/.github/workflows/test.yml +22 -8
- package/HISTORY.md +7 -0
- package/lib/puppet.js +1 -1
- package/package.json +1 -1
package/.github/dependabot.yml
CHANGED
@@ -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:
|
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@
|
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 @
|
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@
|
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: ${{
|
35
|
+
GITHUB_REPO: ${{ vars.GH_REPO }}
|
37
36
|
WHMCSMP_LOGIN: ${{ secrets.WHMCSMP_LOGIN }}
|
38
37
|
WHMCSMP_PASSWORD: ${{ secrets.WHMCSMP_PASSWORD }}
|
39
|
-
WHMCSMP_PRODUCTID: ${{
|
40
|
-
WHMCSMP_MINVERSION: ${{
|
41
|
-
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
package/package.json
CHANGED