Skip to content

Commit 5769a72

Browse files
committed
Update version to 2.0.2 in README, package.json, package-lock.json, and workflow template
1 parent 4905c4a commit 5769a72

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This action enables you to run code analysis with Parasoft dotTEST and review an
99
Parasoft dotTEST is a testing tool that automates software quality practices for C# and VB.NET applications. It uses a comprehensive set of analysis techniques, including pattern-based static analysis, dataflow analysis, metrics, code coverage, and unit testing to help you verify code quality and ensure compliance with industry standards, such as CWE or OWASP.
1010

1111
- Request [a free trial](https://www.parasoft.com/products/parasoft-dottest/dottest-request-a-demo/) to receive access to Parasoft dotTEST's features and capabilities.
12-
- See the [user guide](https://docs.parasoft.com/display/DOTTEST20231) for information about Parasoft dotTEST's capabilities and usage.
12+
- See the [user guide](https://docs.parasoft.com/display/DOTTEST20242) for information about Parasoft dotTEST's capabilities and usage.
1313

1414
Please visit the [official Parasoft website](http://www.parasoft.com) for more information about Parasoft dotTEST and other Parasoft products.
1515

@@ -74,7 +74,7 @@ jobs:
7474
# Runs code analysis with dotTEST.
7575
- name: Run Parasoft dotTEST
7676
# Specifies the action to run.
77-
uses: parasoft/run-dottest-action@2.0.1
77+
uses: parasoft/run-dottest-action@2.0.2
7878

7979
# You can reference a specific commit or version:
8080
# uses: parasoft/run-dottest-action@1bc4be095189f455793afdb10b47127e06ae25ff
@@ -98,7 +98,7 @@ To upload reports in other formats, modify your workflow by adding the `upload-a
9898
# Runs Parasoft dotTEST and generates the reports.
9999
- name: Run Parasoft dotTEST
100100
id: dottest
101-
uses: parasoft/run-dottest-action@2.0.1
101+
uses: parasoft/run-dottest-action@2.0.2
102102
# ...
103103

104104
# Uploads analysis results in the SARIF format, so that they are displayed as GitHub code scanning alerts.
@@ -134,9 +134,9 @@ If `dottestcli` executable is not on `PATH`, you can configure the path to the i
134134

135135
```yaml
136136
- name: Run Parasoft dotTEST
137-
uses: parasoft/run-dottest-action@2.0.1
137+
uses: parasoft/run-dottest-action@2.0.2
138138
with:
139-
installDir: 'c:\Program Files\Parasoft\dotTEST\2022.2'
139+
installDir: 'c:\Program Files\Parasoft\dotTEST\2024.2'
140140
```
141141

142142
#### Configuring a dotTEST Test Configuration
@@ -146,7 +146,7 @@ To specify a test configuration directly in your workflow, add the `testConfig`
146146

147147
```yaml
148148
- name: Run Parasoft dotTEST
149-
uses: parasoft/run-dottest-action@2.0.1
149+
uses: parasoft/run-dottest-action@2.0.2
150150
with:
151151
testConfig: 'builtin://Recommended Rules'
152152
```
@@ -155,7 +155,7 @@ Alternatively, you can provide the workspace-relative path to the .properties fi
155155

156156
```yaml
157157
- name: Run Parasoft dotTEST
158-
uses: parasoft/run-dottest-action@2.0.1
158+
uses: parasoft/run-dottest-action@2.0.2
159159
with:
160160
testConfig: '.\.dottest\MyTestConfig.properties'
161161
```
@@ -167,7 +167,7 @@ In the following example, the scope of analysis is narrowed down to the solution
167167

168168
```yaml
169169
- name: Run Parasoft dotTEST
170-
uses: parasoft/run-dottest-action@2.0.1
170+
uses: parasoft/run-dottest-action@2.0.2
171171
with:
172172
solution: '.\src\*.sln'
173173
```
@@ -180,7 +180,7 @@ Regular configuration of dotTEST allows you to specify certain parameters more t
180180

181181
```yaml
182182
- name: Run Parasoft dotTEST
183-
uses: parasoft/run-dottest-action@2.0.1
183+
uses: parasoft/run-dottest-action@2.0.2
184184
with:
185185
solution: '.\src1\MySln1.sln;
186186
.\src2\MySln2.sln'
@@ -221,7 +221,7 @@ Test Impact Analysis (TIA) allows you to execute only the tests affected by code
221221

222222
```yaml
223223
- name: Run Parasoft dotTEST
224-
uses: parasoft/run-dottest-action@2.0.1
224+
uses: parasoft/run-dottest-action@2.0.2
225225
with:
226226
testConfig: 'Run VSTest Tests'
227227
referenceReportFile: PATH_TO_REPORT_FILE_ON_AGENT
@@ -236,7 +236,7 @@ Generating reports in the SARIF format is available in dotTEST since version 202
236236

237237
```yaml
238238
- name: Run Parasoft dotTEST
239-
uses: parasoft/run-dottest-action@2.0.1
239+
uses: parasoft/run-dottest-action@2.0.2
240240
with:
241241
sarifMode: 'legacy'
242242
```

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "run-parasoft-dottest",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"private": true,
55
"description": "Run code analysis with Parasoft dotTEST and review results",
66
"main": "lib/run-dottest-analyzer.js",

samples/run-dottest-analyzer-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Runs code analysis with dotTEST and generates a .sarif report.
4848
- name: Run Parasoft dotTEST
4949
id: dottest
50-
uses: parasoft/run-dottest-action@1.2.2
50+
uses: parasoft/run-dottest-action@2.0.2
5151
with:
5252
# Path to the working directory.
5353
#workingDir: # optional, default is ${{ github.workspace }}

0 commit comments

Comments
 (0)