Skip to content

Commit 96dc073

Browse files
fix(security): remediate PROD-5142 dependencies (#4036)
Co-authored-by: Michael Guarino <mjg@plural.sh>
1 parent 000875d commit 96dc073

27 files changed

Lines changed: 1740 additions & 2564 deletions

File tree

.github/workflows/go-ci.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,24 @@ jobs:
4242
working-directory: go
4343
version: v2.11.4
4444
args: -c .golangci.yml ${{ steps.lint-packages.outputs.packages }}
45+
46+
tools:
47+
name: Verify tools
48+
runs-on: ubuntu-latest
49+
defaults:
50+
run:
51+
shell: bash
52+
working-directory: go/tools
53+
steps:
54+
- uses: actions/checkout@v6
55+
- uses: actions/setup-go@v6
56+
with:
57+
go-version-file: go/go.work
58+
check-latest: true
59+
- name: Verify tools module and install goimports
60+
run: |
61+
go mod verify
62+
version=$(go list -m -f '{{.Version}}' golang.org/x/tools)
63+
bin=$(mktemp -d)
64+
GOBIN="$bin" go install golang.org/x/tools/cmd/goimports@"$version"
65+
test -x "$bin/goimports"

assets/design-system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"honorable-theme-default": "1.0.0-beta.5",
6767
"immer": "10.2.0",
6868
"lodash-es": "4.18.1",
69-
"mermaid": "11.16.0",
69+
"mermaid": "11.16.1",
7070
"react-animate-height": "3.2.4",
7171
"react-aria": "3.50.0",
7272
"react-diff-viewer-continued": "4.4.0",

assets/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"immer": "10.2.0",
9494
"is-json": "2.0.1",
9595
"js-cookie": "3.0.8",
96-
"js-yaml": "4.3.0",
96+
"js-yaml": "4.3.1",
9797
"kubernetes-resource-parser": "0.1.0",
9898
"lodash": "4.18.1",
9999
"parse-duration-ms": "0.1.0",
@@ -110,7 +110,8 @@
110110
"react-focus-lock": "2.13.7",
111111
"react-merge-refs": "2.1.1",
112112
"react-query-swagger": "15.13.2",
113-
"react-router-dom": "6.30.4",
113+
"react-router": "7.18.0",
114+
"react-router-dom": "7.18.0",
114115
"react-virtualized-auto-sizer": "1.0.26",
115116
"rehype-raw": "7.0.0",
116117
"rehype-sanitize": "6.0.0",
@@ -181,7 +182,7 @@
181182
"elkjs": "0.12.0",
182183
"brace-expansion@npm:^2.0.1": "2.1.2",
183184
"brace-expansion@npm:^2.0.2": "2.1.2",
184-
"js-yaml": "4.3.0",
185+
"js-yaml": "4.3.1",
185186
"postcss": "8.5.19",
186187
"shell-quote": "1.10.0",
187188
"fast-uri": "3.1.4"

0 commit comments

Comments
 (0)