Skip to content

Commit 3df0721

Browse files
fix(deps): update shared components packages
1 parent 08a333d commit 3df0721

File tree

5 files changed

+33
-11
lines changed

5 files changed

+33
-11
lines changed

.github/workflows/commit_lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
- uses: actions/checkout@v3
1212
with:
1313
fetch-depth: 0
14-
- uses: wagoid/commitlint-github-action@v4
14+
- uses: wagoid/commitlint-github-action@v5

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: cat RELEASE_NOTES.md
4949

5050
- name: Run GoReleaser
51-
uses: goreleaser/goreleaser-action@v3
51+
uses: goreleaser/goreleaser-action@v4
5252
if: steps.check-tag.outputs.prerelease == 'false'
5353
with:
5454
version: latest
@@ -57,7 +57,7 @@ jobs:
5757
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5858

5959
- name: Run GoReleaser on pre-release
60-
uses: goreleaser/goreleaser-action@v3
60+
uses: goreleaser/goreleaser-action@v4
6161
if: steps.check-tag.outputs.prerelease == 'true'
6262
with:
6363
version: latest

go.mod

+6-6
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/v12 v12.0.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/v49 v49.0.0
1717
github.com/jackdelahunt/survey-json-schema v0.12.0
1818
github.com/kataras/tablewriter v0.0.0-20180708051242-e063d29b7c23 // indirect
1919
github.com/landoop/tableprinter v0.0.0-20201125135848-89e81fc956e7
@@ -37,12 +37,12 @@ require (
3737
gitlab.com/c0b/go-ordered-json v0.0.0-20201030195603-febf46534d5a
3838
golang.org/x/oauth2 v0.2.0
3939
golang.org/x/text v0.4.0
40-
gopkg.in/AlecAivazis/survey.v1 v1.8.8
40+
gopkg.in/AlecAivazis/survey.v2 v2.3.6
4141
gopkg.in/segmentio/analytics-go.v3 v3.1.0
42-
gopkg.in/yaml.v2 v2.4.0
42+
gopkg.in/yaml.v3 v3.0.1
4343
k8s.io/api v0.22.4
4444
k8s.io/apimachinery v0.22.4
45-
k8s.io/client-go v0.22.4
45+
k8s.io/client-go/v11 v11.0.0+incompatible
4646
k8s.io/utils v0.0.0-20220713171938-56c0de1e6f5e
4747
)
4848

website/package.json

+1-1
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.2.1",
2020
"@svgr/webpack": "6.5.1",
2121
"clsx": "1.2.1",
2222
"file-loader": "6.2.0",

website/yarn.lock

+23-1
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.2.1"
3388+
resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.2.1.tgz#5a70592418d52b1b01538c37e795034601c96ec5"
3389+
integrity sha512-YdXcMcEnqZhzql98RNrqYo9cEhTTesBiCclEtoiQUbJwx87q9453GTapYU6kJ8ZZ2ek1Vp25SiAXEFy5O/eAPw==
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.26"
3876+
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.26.tgz#8ad59fc01fef8eaf5c74f4ea392621749f0b7917"
3877+
integrity sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==
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)