Skip to content

Commit 52eac0d

Browse files
fix(deps): update shared components packages
1 parent 94582ea commit 52eac0d

File tree

6 files changed

+33
-11
lines changed

6 files changed

+33
-11
lines changed

.github/workflows/gobuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Install Go
22-
uses: actions/setup-go@v3
22+
uses: actions/setup-go@v4
2323
with:
2424
go-version: 1.18.x
2525
- name: Checkout code

.github/workflows/modular-docs-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
name: Checkout Source
1515
- name: Install Go
16-
uses: actions/setup-go@v3
16+
uses: actions/setup-go@v4
1717
with:
1818
go-version: 1.17.x
1919
- run: make generate-downstream-docs

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0
1717
-
1818
name: Set up Go
19-
uses: actions/setup-go@v3
19+
uses: actions/setup-go@v4
2020
with:
2121
go-version: 1.18.x
2222

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ go 1.18
55
require (
66
github.com/AlecAivazis/survey/v2 v2.3.6
77
github.com/BurntSushi/toml v1.2.1
8-
github.com/MakeNowJust/heredoc v1.0.0
9-
github.com/Nerzal/gocloak/v7 v7.11.0
8+
github.com/MakeNowJust/heredoc/v2 v2.0.1
9+
github.com/Nerzal/gocloak/v13 v13.1.0
1010
github.com/aerogear/charmil v0.8.3
1111
github.com/blang/semver v3.5.1+incompatible
1212
github.com/briandowns/spinner v1.19.0
1313
github.com/coreos/go-oidc/v3 v3.4.0
1414
github.com/fatih/color v1.13.0
1515
github.com/golang-jwt/jwt/v4 v4.4.3
16-
github.com/google/go-github/v39 v39.2.0
16+
github.com/google/go-github/v50 v50.2.0
1717
github.com/jackdelahunt/survey-json-schema v0.13.0
1818
github.com/kataras/tablewriter v0.0.0-20180708051242-e063d29b7c23 // indirect
1919
github.com/landoop/tableprinter v0.0.0-20201125135848-89e81fc956e7
@@ -30,12 +30,12 @@ require (
3030
gitlab.com/c0b/go-ordered-json v0.0.0-20201030195603-febf46534d5a
3131
golang.org/x/oauth2 v0.3.0
3232
golang.org/x/text v0.5.0
33-
gopkg.in/AlecAivazis/survey.v1 v1.8.8
33+
gopkg.in/AlecAivazis/survey.v2 v2.3.6
3434
gopkg.in/segmentio/analytics-go.v3 v3.1.0
35-
gopkg.in/yaml.v2 v2.4.0
35+
gopkg.in/yaml.v3 v3.0.1
3636
k8s.io/api v0.24.8
3737
k8s.io/apimachinery v0.24.8
38-
k8s.io/client-go v0.24.8
38+
k8s.io/client-go v11.0.0+incompatible
3939
k8s.io/utils v0.0.0-20220713171938-56c0de1e6f5e
4040
)
4141

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dependencies": {
1717
"@docusaurus/core": "2.2.0",
1818
"@docusaurus/preset-classic": "2.2.0",
19-
"@mdx-js/react": "1.6.22",
19+
"@mdx-js/react": "2.3.0",
2020
"@svgr/webpack": "6.5.1",
2121
"clsx": "1.2.1",
2222
"file-loader": "6.2.0",

website/yarn.lock

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3383,7 +3383,15 @@
33833383
unist-builder "2.0.3"
33843384
unist-util-visit "2.0.3"
33853385

3386-
"@mdx-js/[email protected]", "@mdx-js/react@^1.6.22":
3386+
3387+
version "2.3.0"
3388+
resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.3.0.tgz#4208bd6d70f0d0831def28ef28c26149b03180b3"
3389+
integrity sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==
3390+
dependencies:
3391+
"@types/mdx" "^2.0.0"
3392+
"@types/react" ">=16"
3393+
3394+
"@mdx-js/react@^1.6.22":
33873395
version "1.6.22"
33883396
resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573"
33893397
integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==
@@ -3783,6 +3791,11 @@
37833791
dependencies:
37843792
"@types/unist" "*"
37853793

3794+
"@types/mdx@^2.0.0":
3795+
version "2.0.3"
3796+
resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.3.tgz#43fd32414f17fcbeced3578109a6edd877a2d96e"
3797+
integrity sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==
3798+
37863799
"@types/mime@^1":
37873800
version "1.3.2"
37883801
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a"
@@ -3858,6 +3871,15 @@
38583871
"@types/scheduler" "*"
38593872
csstype "^3.0.2"
38603873

3874+
"@types/react@>=16":
3875+
version "18.0.28"
3876+
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.28.tgz#accaeb8b86f4908057ad629a26635fe641480065"
3877+
integrity sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==
3878+
dependencies:
3879+
"@types/prop-types" "*"
3880+
"@types/scheduler" "*"
3881+
csstype "^3.0.2"
3882+
38613883
"@types/retry@^0.12.0":
38623884
version "0.12.1"
38633885
resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.1.tgz#d8f1c0d0dc23afad6dc16a9e993a0865774b4065"

0 commit comments

Comments
 (0)