Skip to content

Commit

Permalink
Bump typedoc package to remove high vuln with marked 2.1.3 package (#…
Browse files Browse the repository at this point in the history
…31)

* bump typedoc

* Commit from GitHub Actions (pull-request)

Signed-off-by: NeoBot <[email protected]>

---------

Signed-off-by: NeoBot <[email protected]>
Co-authored-by: NeoBot <[email protected]>
  • Loading branch information
neogibson and neobot1 authored Oct 3, 2024
1 parent dc96110 commit becdb08
Show file tree
Hide file tree
Showing 7 changed files with 373 additions and 96 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.2.3] - 2024-10-03

- Update the `typedoc` package to address a high severity vulnerability.

## [1.2.2] - 2024-07-02

- Update a number of packages to address critical and high vulnerabilities.
Expand Down
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions build/validate.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mongo-memory-server-action",
"description": "Support MongoDB-dependent GitHub Workflows",
"version": "1.2.2",
"version": "1.2.3",
"repository": {
"type": "git",
"url": "[email protected]:neofinancial/mongo-memory-server-action.git"
Expand Down Expand Up @@ -41,7 +41,7 @@
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typedoc": "^0.21.2",
"typescript": "^4.3.5"
"typedoc": "^0.26.7",
"typescript": "4.6.4"
}
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async function run(): Promise<void> {

console.info(stdOut);
} catch (err) {
core.setFailed(err.message);
core.setFailed((err as Error).message);
} finally {
if (mongodb?.state === MongoMemoryServerStates.running) {
await mongodb.stop();
Expand Down
2 changes: 1 addition & 1 deletion src/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function runTest(): Promise<void> {

// do work
} catch (err) {
core.setFailed(err.message);
core.setFailed((err as Error).message);
console.error(`Error encountered opening connection`, err);

throw err;
Expand Down
Loading

0 comments on commit becdb08

Please sign in to comment.