-
Notifications
You must be signed in to change notification settings - Fork 3
SP-3565: Update dependencies #140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
96ef510
7dcbaae
08cb65c
1e6dafd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 20.6.0 | ||
| 24.15.0 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||||
|
|
||||||
| ## [Unreleased] | ||||||
|
|
||||||
| ## [1.6.3] - 2026-05-18 | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add the reference version at the bottom of the file |
||||||
| ### Changed | ||||||
| - Upgraded Node.js to 24 | ||||||
| - Upgraded eslint-plugin jest to 29.15.2 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix package name typo in changelog text. Line 13 says Suggested patch-- Upgraded eslint-plugin jest to 29.15.2
+- Upgraded eslint-plugin-jest to 29.15.2📝 Committable suggestion
Suggested change
🧰 Tools🪛 LanguageTool[grammar] ~13-~13: Use a hyphen to join words. (QB_NEW_EN_HYPHEN) 🤖 Prompt for AI Agents
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please fix typo. It should be |
||||||
| - Upgraded @types/node to 25.3.5 | ||||||
| - Upgraded @actions/core to 3.0.0 | ||||||
| - Upgraded globals to 17.4.0 | ||||||
| - Upgraded actions/upload-artifact to 7 | ||||||
| - Added __mocks__/@actions/core.ts to mock @actions/core for tests | ||||||
| - Updated actions/checkout to v6 in README.md | ||||||
| ### Fixed | ||||||
| - Changed 'code-scan-action' to 'gha-code-scan' in README.md | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you also add a note to |
||||||
|
|
||||||
| ## [1.6.2] - 2026-05-11 | ||||||
| ### Changed | ||||||
| - Upgraded `scanoss.py` runtime container to v1.52.1 | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| // SPDX-License-Identifier: MIT | ||
| /* | ||
| Copyright (c) 2026, SCANOSS | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in | ||
| all copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| THE SOFTWARE. | ||
| */ | ||
|
|
||
| export const debug = jest.fn(); | ||
| export const error = jest.fn(); | ||
| export const info = jest.fn(); | ||
| export const notice = jest.fn(); | ||
| export const warning = jest.fn(); | ||
| export const setFailed = jest.fn(); | ||
| export const setOutput = jest.fn(); | ||
| export const setSecret = jest.fn(); | ||
| export const getInput = jest.fn().mockReturnValue(''); | ||
|
|
||
| export const summary = { | ||
| addHeading: jest.fn().mockReturnThis(), | ||
| addRaw: jest.fn().mockReturnThis(), | ||
| addSeparator: jest.fn().mockReturnThis(), | ||
| addCodeBlock: jest.fn().mockReturnThis(), | ||
| write: jest.fn().mockResolvedValue(undefined) | ||
| }; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -120,5 +120,5 @@ outputs: | |
| description: 'Scanner command output' | ||
|
|
||
| runs: | ||
| using: node20 | ||
| using: node24 | ||
| main: dist/index.js | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add the missing
1.6.3release reference link.Line 10 introduces
[1.6.3], but there’s no matching reference definition at the bottom of the file, so this entry won’t link like prior versions.Suggested patch
+[1.6.3]: https://github.com/scanoss/gha-code-scan/compare/v1.6.2...v1.6.3🤖 Prompt for AI Agents