From 6fa20c370ff31ef987673cd573509005cb9c0d13 Mon Sep 17 00:00:00 2001 From: Agustin Groh Date: Mon, 11 May 2026 09:57:40 -0300 Subject: [PATCH] chore(runtime):SP-4382 bump runtime container to v1.52.1 --- CHANGELOG.md | 5 +++++ README.md | 2 +- action.yml | 2 +- dist/index.js | 4 ++-- package.json | 2 +- src/app.input.ts | 2 +- 6 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c698c31..1f1bdb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.6.2] - 2026-05-11 +### Changed +- Upgraded `scanoss.py` runtime container to v1.52.1 + ## [1.6.1] - 2026-03-30 ### Fixed - Fixed policy check runs remaining in "queued" status when the workflow fails before policy execution @@ -195,3 +199,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [1.5.0]: https://github.com/scanoss/gha-code-scan/compare/v1.4.0...v1.5.0 [1.6.0]: https://github.com/scanoss/gha-code-scan/compare/v1.5.0...v1.6.0 [1.6.1]: https://github.com/scanoss/gha-code-scan/compare/v1.6.0...v1.6.1 +[1.6.2]: https://github.com/scanoss/gha-code-scan/compare/v1.6.1...v1.6.2 \ No newline at end of file diff --git a/README.md b/README.md index 9062e39..7d045f4 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ For example workflow runs, check out our | licenses.copyleft.include | List of Copyleft licenses to append to the default list. Provide licenses as a comma-separated list. | Optional | - | | licenses.copyleft.exclude | List of Copyleft licenses to remove from default list. Provide licenses as a comma-separated list. | Optional | - | | licenses.copyleft.explicit | Explicit list of Copyleft licenses to consider. Provide licenses as a comma-separated list. | Optional | - | -| runtimeContainer | Runtime URL | Optional | `ghcr.io/scanoss/scanoss-py:v1.46.0` | +| runtimeContainer | Runtime URL | Optional | `ghcr.io/scanoss/scanoss-py:v1.52.1` | | skipSnippets | Skip the generation of snippets. (scanFiles option must be enabled) | Optional | `false` | | scanFiles | Enable or disable file and snippet scanning | Optional | `true` | | scanossSettings | Settings file to use for scanning. See the SCANOSS settings [documentation](https://scanoss.readthedocs.io/projects/scanoss-py/en/latest/#settings-file) | Optional | `true` | diff --git a/action.yml b/action.yml index 7dcf039..0bcd6ae 100644 --- a/action.yml +++ b/action.yml @@ -59,7 +59,7 @@ inputs: required: false runtimeContainer: description: 'Specify runtime container to perform the scan.' - default: 'ghcr.io/scanoss/scanoss-py:v1.46.0' + default: 'ghcr.io/scanoss/scanoss-py:v1.52.1' required: false skipSnippets: description: 'Skip the generation of snippets.' diff --git a/dist/index.js b/dist/index.js index 76dae43..d98e76c 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,4 +1,4 @@ -/*! scanoss-code-scan-action v1.6.1 | MIT */ +/*! scanoss-code-scan-action v1.6.2 | MIT */ "use strict"; var __create = Object.create; var __defProp = Object.defineProperty; @@ -96524,7 +96524,7 @@ var REPO_DIR = process.env.GITHUB_WORKSPACE; var COPYLEFT_LICENSE_INCLUDE = core.getInput("licenses.copyleft.include"); var COPYLEFT_LICENSE_EXCLUDE = core.getInput("licenses.copyleft.exclude"); var COPYLEFT_LICENSE_EXPLICIT = core.getInput("licenses.copyleft.explicit"); -var RUNTIME_CONTAINER = core.getInput("runtimeContainer") || "ghcr.io/scanoss/scanoss-py:v1.46.0"; +var RUNTIME_CONTAINER = core.getInput("runtimeContainer") || "ghcr.io/scanoss/scanoss-py:v1.52.1"; var SKIP_SNIPPETS = core.getInput("skipSnippets") === "true"; var MATCH_ANNOTATIONS = core.getInput("matchAnnotations") === "true"; var SCAN_FILES = core.getInput("scanFiles") === "true"; diff --git a/package.json b/package.json index c95647b..54d9720 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "scanoss-code-scan-action", "description": "SCANOSS Code Scan Action", - "version": "1.6.1", + "version": "1.6.2", "author": "SCANOSS", "private": true, "homepage": "https://github.com/scanoss/code-scan-action/", diff --git a/src/app.input.ts b/src/app.input.ts index 0ca95f2..c60456f 100644 --- a/src/app.input.ts +++ b/src/app.input.ts @@ -143,7 +143,7 @@ export const COPYLEFT_LICENSE_EXPLICIT = core.getInput('licenses.copyleft.explic // Runtime Configuration /** Docker container image for scanoss-py execution */ -export const RUNTIME_CONTAINER = core.getInput('runtimeContainer') || 'ghcr.io/scanoss/scanoss-py:v1.46.0'; +export const RUNTIME_CONTAINER = core.getInput('runtimeContainer') || 'ghcr.io/scanoss/scanoss-py:v1.52.1'; /** Skip snippet generation during scan */ export const SKIP_SNIPPETS = core.getInput('skipSnippets') === 'true'; /** Enable match annotations and commit comments */