Skip to content
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

another mega dependabot #4180

Merged
merged 20 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5ff8750
Bump actions/setup-go from 3 to 4
dependabot[bot] Nov 23, 2023
635298e
Bump @babel/preset-react from 7.18.6 to 7.23.3 in /web
dependabot[bot] Nov 23, 2023
61e91d2
Bump mini-css-extract-plugin from 2.6.0 to 2.7.6 in /web
dependabot[bot] Nov 23, 2023
4c6e48b
Bump eslint-config-prettier from 8.5.0 to 9.0.0 in /web
dependabot[bot] Nov 23, 2023
cd47a89
Bump @pmmmwh/react-refresh-webpack-plugin from 0.5.6 to 0.5.11 in /web
dependabot[bot] Nov 23, 2023
570dfac
Bump github.com/spf13/cobra from 1.7.0 to 1.8.0
dependabot[bot] Nov 23, 2023
935cf09
Bump golang.org/x/sync from 0.4.0 to 0.5.0
dependabot[bot] Nov 23, 2023
9138241
Bump actions/github-script from 6 to 7
dependabot[bot] Nov 27, 2023
be46b28
Bump hashicorp/setup-terraform from 2 to 3
dependabot[bot] Nov 27, 2023
3272d1a
Bump actions/setup-node from 3 to 4
dependabot[bot] Nov 27, 2023
29ddd59
Merge remote-tracking branch 'origin/dependabot/github_actions/action…
laverya Nov 29, 2023
81f0d9d
Merge remote-tracking branch 'origin/dependabot/go_modules/github.com…
laverya Nov 29, 2023
6da0d42
Merge remote-tracking branch 'origin/dependabot/npm_and_yarn/web/babe…
laverya Nov 29, 2023
eb7adbd
Merge remote-tracking branch 'origin/dependabot/npm_and_yarn/web/mini…
laverya Nov 29, 2023
c5f5bfd
Merge remote-tracking branch 'origin/dependabot/npm_and_yarn/web/esli…
laverya Nov 29, 2023
66bb5a2
Merge remote-tracking branch 'origin/dependabot/npm_and_yarn/web/pmmm…
laverya Nov 29, 2023
34ff1b2
Merge remote-tracking branch 'origin/dependabot/go_modules/golang.org…
laverya Nov 29, 2023
f45e8c2
Merge remote-tracking branch 'origin/dependabot/github_actions/action…
laverya Nov 29, 2023
511120f
Merge remote-tracking branch 'origin/dependabot/github_actions/hashic…
laverya Nov 29, 2023
55c02b7
Merge remote-tracking branch 'origin/dependabot/github_actions/action…
laverya Nov 29, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/alpha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Build web
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
repository: ${{github.event.pull_request.head.repo.full_name}}

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: yarn
Expand All @@ -101,7 +101,7 @@ jobs:
repository: ${{github.event.pull_request.head.repo.full_name}}

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: yarn
Expand All @@ -128,7 +128,7 @@ jobs:
repository: ${{github.event.pull_request.head.repo.full_name}}

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: yarn
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
repository: ${{github.event.pull_request.head.repo.full_name}}

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-infra-cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
path: automation
ref: main
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
uses: hashicorp/setup-terraform@v3
with:
terraform_wrapper: false
- name: Initialize terraform
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-workspace-cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
path: automation
ref: main
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
uses: hashicorp/setup-terraform@v3
- name: Initialize Terraform
env:
TF_WORKSPACE: default
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
path: automation
ref: main
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
uses: hashicorp/setup-terraform@v3
- name: Initialize Terraform
env:
TF_WORKSPACE: default
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
- uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: '^1.20.0'

- name: Install Go deps
run: go mod download

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: yarn
cache-dependency-path: web/yarn.lock
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Build web
Expand Down Expand Up @@ -419,7 +419,7 @@ jobs:
steps:
- name: Get latest release tag
id: get_latest_release_tag
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ require (
github.com/schemahero/schemahero v0.13.6
github.com/segmentio/ksuid v1.0.4
github.com/sergi/go-diff v1.2.0
github.com/spf13/cobra v1.7.0
github.com/spf13/cobra v1.8.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.17.0
github.com/stretchr/testify v1.8.4
Expand All @@ -70,7 +70,7 @@ require (
go.uber.org/zap v1.25.0
golang.org/x/crypto v0.14.0
golang.org/x/oauth2 v0.13.0
golang.org/x/sync v0.4.0
golang.org/x/sync v0.5.0
google.golang.org/api v0.149.0
gopkg.in/go-playground/assert.v1 v1.2.1
gopkg.in/ini.v1 v1.67.0
Expand Down
10 changes: 5 additions & 5 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfc
github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE=
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=
github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
Expand Down Expand Up @@ -1650,8 +1650,8 @@ github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3
github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU=
github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE=
github.com/spf13/cobra v1.2.1/go.mod h1:ExllRjgxM/piMAM+3tAZvg8fsklGAf3tPfi+i8t68Nk=
github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I=
github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0=
github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0=
github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho=
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=
github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=
github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo=
Expand Down Expand Up @@ -2077,8 +2077,8 @@ golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJ
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.4.0 h1:zxkM55ReGkDlKSM+Fu41A+zmbZuaPVbGMzvvdUPznYQ=
golang.org/x/sync v0.4.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE=
golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20171026204733-164713f0dfce/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20180117170059-2c42eef0765b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
Expand Down
8 changes: 4 additions & 4 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
"@babel/plugin-proposal-object-rest-spread": "7.10.4",
"@babel/plugin-proposal-optional-chaining": "7.10.4",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.18.6",
"@pact-foundation/pact": "^9.17.3",
"@pact-foundation/pact-node": "^10.17.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.14",
Expand Down Expand Up @@ -80,7 +80,7 @@
"eslint": "^8.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "14.1.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "2.22.0",
Expand All @@ -96,7 +96,7 @@
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mini-css-extract-plugin": "^2.4.5",
"mini-css-extract-plugin": "^2.7.6",
"object-assign": "^4.1.1",
"os-browserify": "^0.3.0",
"path": "^0.12.7",
Expand Down
Loading
Loading