Skip to content

Commit ef4d6e6

Browse files
Merge pull request #20 from abhinavminhas/dev
GitHub Release Creation - v.1.0.5
2 parents 84aa9f7 + 2722a2b commit ef4d6e6

File tree

6 files changed

+367
-2634
lines changed

6 files changed

+367
-2634
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
os: [ ubuntu-20.04, windows-2022, macos-11 ]
23-
node-version: [ 14.x, 16.x, 17.x, 18.x ]
22+
os: [ ubuntu-22.04, windows-2022, macos-14 ]
23+
node-version: [ 16.x, 17.x, 18.x, 19.x, 20.x, 21.x, 22.x ]
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v3
28+
uses: actions/setup-node@v4
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
- run: npm install
3232
- run: npm test
3333

3434
- name: Upload Artifact
35-
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.node-version == '16.x' }}
36-
uses: actions/upload-artifact@v3
35+
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.node-version == '16.x' }}
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: qtest-mstest-parser
3939
path: |

.github/workflows/coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ on:
1414
jobs:
1515
build:
1616

17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-22.04
1818

1919
strategy:
2020
matrix:
2121
node-version: [ 16.x ]
2222

2323
steps:
2424
- name: Checkout Repository
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 2
2828

2929
- name: Set Up Node.js ${{ matrix.node-version }}
30-
uses: actions/setup-node@v3
30+
uses: actions/setup-node@v4
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333

@@ -40,7 +40,7 @@ jobs:
4040
run: nyc --reporter=lcov npm test
4141

4242
- name: Upload Coverage To Codecov
43-
uses: codecov/codecov-action@v3
43+
uses: codecov/codecov-action@v4
4444
with:
4545
token: ${{ secrets.CODECOV_TOKEN }}
4646

.github/workflows/release.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
name: Release
22

33
env:
4-
RELEASE_NAME: "v.1.0.4"
4+
RELEASE_NAME: "v.1.0.5"
55
RELEASE_NOTES: |
6-
- Security Update - 'decode-uri-component' vulnerable to Denial of Service (DoS) [CVE-2022-38900](https://github.com/advisories/GHSA-w573-4hg7-7wgq)
7-
- Security Update - 'minimatch' ReDoS vulnerability [CVE-2022-3517](https://github.com/advisories/GHSA-f8q6-p94x-37v3)
8-
- Security Update - 'xml2js' is vulnerable to prototype pollution [CVE-2023-0842](https://github.com/advisories/GHSA-776f-qx25-q3cc)
6+
- Security Update - Uncontrolled resource consumption in braces [CVE-2024-4068](https://github.com/advisories/GHSA-grv7-fg5c-xmjg)
7+
- Security Update - Regular Expression Denial of Service (ReDoS) in micromatch [CVE-2024-4067](https://github.com/advisories/GHSA-952p-6rrq-rcjv)
98
109
on:
1110
workflow_dispatch:
@@ -15,13 +14,13 @@ jobs:
1514
runs-on: ${{ matrix.os }}
1615
strategy:
1716
matrix:
18-
os: [ ubuntu-20.04 ]
17+
os: [ ubuntu-22.04 ]
1918
node-version: [ 16.x ]
2019

2120
steps:
22-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2322
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v3
23+
uses: actions/setup-node@v4
2524
with:
2625
node-version: ${{ matrix.node-version }}
2726
- run: npm install

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Tricentis [qTest](https://www.tricentis.com/products/unified-test-management-qte
5454
<img src="https://user-images.githubusercontent.com/17473202/137570746-b66adc87-a5ce-4a6c-a2d9-427066c23689.png" > </img>
5555

5656
- Required zipped file contents (for manually creating zipped file)
57-
```
57+
``` js
5858
node_modules/
5959
package.json
6060
package-lock.json

0 commit comments

Comments
 (0)