Skip to content

Commit 65ebad3

Browse files
committed
chore:SP-2808 Upgrades scanoss-py version to v1.26.2
1 parent 7f092c1 commit 65ebad3

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

OVERVIEW.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ When the pipeline is manually triggered or runs on a schedule, the results are u
153153
| policiesHaltOnFailure | Halt check on policy failure. If set to false checks will not fail. | Optional | `true` |
154154
| apiUrl | SCANOSS API URL | Optional | `https://api.osskb.org/scan/direct` |
155155
| apiKey | SCANOSS API Key | Optional | - |
156-
| runtimeContainer | Runtime URL | Optional | `ghcr.io/scanoss/scanoss-py:v1.26.1` |
156+
| runtimeContainer | Runtime URL | Optional | `ghcr.io/scanoss/scanoss-py:v1.26.2` |
157157
| licensesCopyleftInclude | List of Copyleft licenses to append to the default list. Provide licenses as a comma-separated list. | Optional | - |
158158
| licensesCopyleftExclude | List of Copyleft licenses to remove from default list. Provide licenses as a comma-separated list. | Optional | - |
159159
| licensesCopyleftExplicit | Explicit list of Copyleft licenses to consider. Provide licenses as a comma-separated list. | Optional | - |

codescantask/app.input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const API_URL = tl.getInput('apiUrl');
3434
export const OUTPUT_FILEPATH = tl.getInput('outputFilepath') || "results.json";
3535
export const REPO_DIR = tl.getVariable('Build.Repository.LocalPath') || ''; // Get repository path
3636
export const POLICIES_HALT_ON_FAILURE = tl.getInput('policiesHaltOnFailure') === 'true';
37-
export const RUNTIME_CONTAINER = tl.getInput('runtimeContainer') || "ghcr.io/scanoss/scanoss-py:v1.26.1";
37+
export const RUNTIME_CONTAINER = tl.getInput('runtimeContainer') || "ghcr.io/scanoss/scanoss-py:v1.26.2";
3838
export const SKIP_SNIPPETS = tl.getInput('skipSnippets') === 'true';
3939
export const SCAN_FILES = tl.getInput('scanFiles') === 'true';
4040
export const SCANOSS_SETTINGS = tl.getInput('scanossSettings') === 'true';

codescantask/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azure-devops-integration",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

codescantask/policies/policy-check.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export abstract class PolicyCheck {
7979
if (this.buildReason && this.buildReason !== 'PullRequest') return;
8080
try {
8181
if (!this.accessToken || !this.orgUrl || !this.project || !this.repositoryId || !this.pullRequestId) {
82-
throw new Error(`Missing necessary environment variables.\n
82+
throw new Error(`Missing necessary environment variables.\n
8383
Access Token: ${this.accessToken}\n
8484
Organization url: ${this.orgUrl}\n
8585
Project: ${this.project}\n

codescantask/services/scan.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export interface Options {
7171
inputFilepath: string;
7272

7373
/**
74-
* Runtime container to perform scan. Default [ghcr.io/scanoss/scanoss-py:v1.26.1]
74+
* Runtime container to perform scan. Default [ghcr.io/scanoss/scanoss-py:v1.26.2]
7575
*/
7676
runtimeContainer: string;
7777

codescantask/task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"version": {
1111
"Major": 1,
1212
"Minor": 0,
13-
"Patch": 0
13+
"Patch": 1
1414
},
1515
"inputs": [
1616
{
@@ -81,7 +81,7 @@
8181
"name": "runtimeContainer",
8282
"type": "string",
8383
"label": "Runtime container",
84-
"defaultValue": "ghcr.io/scanoss/scanoss-py:v1.26.1",
84+
"defaultValue": "ghcr.io/scanoss/scanoss-py:v1.26.2",
8585
"required": false,
8686
"helpMarkDown": "Specify runtime container to perform the scan."
8787
},

vss-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "scanoss-code-scan",
44
"name": "SCANOSS Code Scan",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"publisher": "SCANOSS",
77
"public": true,
88
"targets": [

0 commit comments

Comments
 (0)