Skip to content

Commit ebf5153

Browse files
test: bump the testsuite group with 6 updates (#175)
* chore: bump the example group with 6 updates Bumps the example group with 6 updates: | Package | From | To | | --- | --- | --- | | [github.com/gruntwork-io/terratest](https://github.com/gruntwork-io/terratest) | `0.43.13` | `0.46.11` | | [github.com/zitadel/oidc](https://github.com/zitadel/oidc) | `1.13.4` | `1.13.5` | | [github.com/zitadel/zitadel-go/v2](https://github.com/zitadel/zitadel-go) | `2.0.18` | `2.1.7` | | [k8s.io/api](https://github.com/kubernetes/api) | `0.28.1` | `0.28.4` | | [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.28.1` | `0.28.4` | | [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.28.1` | `0.28.4` | Updates `github.com/gruntwork-io/terratest` from 0.43.13 to 0.46.11 - [Release notes](https://github.com/gruntwork-io/terratest/releases) - [Commits](gruntwork-io/terratest@v0.43.13...v0.46.11) Updates `github.com/zitadel/oidc` from 1.13.4 to 1.13.5 - [Release notes](https://github.com/zitadel/oidc/releases) - [Changelog](https://github.com/zitadel/oidc/blob/main/.releaserc.js) - [Commits](zitadel/oidc@v1.13.4...v1.13.5) Updates `github.com/zitadel/zitadel-go/v2` from 2.0.18 to 2.1.7 - [Release notes](https://github.com/zitadel/zitadel-go/releases) - [Changelog](https://github.com/zitadel/zitadel-go/blob/main/.releaserc.js) - [Commits](zitadel/zitadel-go@v2.0.18...v2.1.7) Updates `k8s.io/api` from 0.28.1 to 0.28.4 - [Commits](kubernetes/api@v0.28.1...v0.28.4) Updates `k8s.io/apimachinery` from 0.28.1 to 0.28.4 - [Commits](kubernetes/apimachinery@v0.28.1...v0.28.4) Updates `k8s.io/client-go` from 0.28.1 to 0.28.4 - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](kubernetes/client-go@v0.28.1...v0.28.4) --- updated-dependencies: - dependency-name: github.com/gruntwork-io/terratest dependency-type: direct:production update-type: version-update:semver-minor dependency-group: example - dependency-name: github.com/zitadel/oidc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: example - dependency-name: github.com/zitadel/zitadel-go/v2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: example - dependency-name: k8s.io/api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: example - dependency-name: k8s.io/apimachinery dependency-type: direct:production update-type: version-update:semver-patch dependency-group: example - dependency-name: k8s.io/client-go dependency-type: direct:production update-type: version-update:semver-patch dependency-group: example ... Signed-off-by: dependabot[bot] <[email protected]> * configure dependabot * run tests on testfile changes * syntax * pattern * fix reference --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Elio Bischof <[email protected]>
1 parent 6bc8ea4 commit ebf5153

File tree

4 files changed

+158
-79
lines changed

4 files changed

+158
-79
lines changed

.github/dependabot.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ updates:
33
- package-ecosystem: "gomod"
44
directory: "/"
55
commit-message:
6-
prefix: "chore"
6+
prefix: "test"
77
schedule:
88
interval: "weekly"
99
groups:
10-
example:
10+
testsuite:
1111
patterns:
1212
- "*"
1313
reviewers:

.github/workflows/test.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -77,28 +77,37 @@ jobs:
7777
echo "changed=true" >> $GITHUB_OUTPUT
7878
fi
7979
80+
- name: Get Changed Test Relevant Files
81+
id: 'list-changed-test'
82+
uses: tj-actions/changed-files@v42
83+
with:
84+
files: |
85+
go.mod
86+
go.sum
87+
charts/zitadel/acceptance/**
88+
8089
- id: 'add-cockroachdb-repo'
8190
name: Add The CockroachDB Helm Repo
8291
run: 'helm repo add cockroachdb https://charts.cockroachdb.com/'
83-
if: steps.list-changed.outputs.changed == 'true'
92+
if: steps.list-changed.outputs.changed == 'true' || steps.list-changed-test.outputs.any_changed == 'true'
8493

8594
- id: 'lint'
8695
name: Lint The Chart
8796
run: 'ct lint --target-branch ${{ github.event.repository.default_branch }}'
88-
if: steps.list-changed.outputs.changed == 'true'
97+
if: steps.list-changed.outputs.changed == 'true' || steps.list-changed-test.outputs.any_changed == 'true'
8998

9099
- id: 'create-kind'
91100
name: Create Kubernetes Cluster with KinD
92101
uses: 'helm/[email protected]'
93-
if: steps.list-changed.outputs.changed == 'true'
102+
if: steps.list-changed.outputs.changed == 'true' || steps.list-changed-test.outputs.any_changed == 'true'
94103
with:
95104
node_image: 'kindest/node:${{ matrix.k8s.kindest-image-tag }}'
96105
version: 'v0.20.0'
97106

98107
- id: 'test'
99108
name: Run Go Tests
100109
run: 'go test -p 1 ./...'
101-
if: steps.list-changed.outputs.changed == 'true'
110+
if: steps.list-changed.outputs.changed == 'true' || steps.list-changed-test.outputs.any_changed == 'true'
102111

103112
- id: 'zitadel-test-namespaces'
104113
name: Grep Created Namespaces

go.mod

+39-22
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,25 @@ module github.com/zitadel/zitadel-charts
33
go 1.19
44

55
require (
6-
github.com/gruntwork-io/terratest v0.43.13
6+
github.com/gruntwork-io/terratest v0.46.11
77
github.com/jinzhu/copier v0.4.0
88
github.com/stretchr/testify v1.8.4
9-
github.com/zitadel/oidc v1.13.4
10-
github.com/zitadel/zitadel-go/v2 v2.0.18
9+
github.com/zitadel/oidc v1.13.5
10+
github.com/zitadel/zitadel-go/v2 v2.1.7
1111
gopkg.in/yaml.v3 v3.0.1
12-
k8s.io/api v0.28.1
13-
k8s.io/apimachinery v0.28.1
14-
k8s.io/client-go v0.28.1
12+
k8s.io/api v0.28.4
13+
k8s.io/apimachinery v0.28.4
14+
k8s.io/client-go v0.28.4
1515
)
1616

1717
require (
18+
github.com/BurntSushi/toml v1.3.2 // indirect
1819
github.com/aws/aws-sdk-go v1.44.122 // indirect
1920
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
2021
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
2122
github.com/davecgh/go-spew v1.1.1 // indirect
2223
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
23-
github.com/envoyproxy/protoc-gen-validate v1.0.2 // indirect
24+
github.com/envoyproxy/protoc-gen-validate v1.0.4 // indirect
2425
github.com/ghodss/yaml v1.0.0 // indirect
2526
github.com/go-errors/errors v1.0.2-0.20180813162953-d98b870cc4e0 // indirect
2627
github.com/go-logr/logr v1.2.4 // indirect
@@ -30,45 +31,61 @@ require (
3031
github.com/go-sql-driver/mysql v1.4.1 // indirect
3132
github.com/gogo/protobuf v1.3.2 // indirect
3233
github.com/golang/protobuf v1.5.3 // indirect
34+
github.com/gonvenience/bunt v1.3.5 // indirect
35+
github.com/gonvenience/neat v1.3.12 // indirect
36+
github.com/gonvenience/term v1.0.2 // indirect
37+
github.com/gonvenience/text v1.0.7 // indirect
38+
github.com/gonvenience/wrap v1.1.2 // indirect
39+
github.com/gonvenience/ytbx v1.4.4 // indirect
3340
github.com/google/gnostic-models v0.6.8 // indirect
34-
github.com/google/go-cmp v0.5.9 // indirect
41+
github.com/google/go-cmp v0.6.0 // indirect
3542
github.com/google/gofuzz v1.2.0 // indirect
36-
github.com/google/uuid v1.3.0 // indirect
43+
github.com/google/uuid v1.4.0 // indirect
3744
github.com/gorilla/schema v1.2.0 // indirect
3845
github.com/gorilla/securecookie v1.1.1 // indirect
39-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.17.1 // indirect
46+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 // indirect
4047
github.com/gruntwork-io/go-commons v0.8.0 // indirect
4148
github.com/hashicorp/errwrap v1.0.0 // indirect
4249
github.com/hashicorp/go-multierror v1.1.0 // indirect
50+
github.com/homeport/dyff v1.6.0 // indirect
4351
github.com/imdario/mergo v0.3.11 // indirect
4452
github.com/jmespath/go-jmespath v0.4.0 // indirect
4553
github.com/josharian/intern v1.0.0 // indirect
4654
github.com/json-iterator/go v1.1.12 // indirect
55+
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
4756
github.com/mailru/easyjson v0.7.7 // indirect
57+
github.com/mattn/go-ciede2000 v0.0.0-20170301095244-782e8c62fec3 // indirect
58+
github.com/mattn/go-isatty v0.0.19 // indirect
4859
github.com/mattn/go-zglob v0.0.2-0.20190814121620-e3c945676326 // indirect
4960
github.com/mitchellh/go-homedir v1.1.0 // indirect
61+
github.com/mitchellh/go-ps v1.0.0 // indirect
62+
github.com/mitchellh/hashstructure v1.1.0 // indirect
5063
github.com/moby/spdystream v0.2.0 // indirect
5164
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5265
github.com/modern-go/reflect2 v1.0.2 // indirect
5366
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5467
github.com/pmezard/go-difflib v1.0.0 // indirect
5568
github.com/pquerna/otp v1.2.0 // indirect
5669
github.com/russross/blackfriday/v2 v2.1.0 // indirect
70+
github.com/sergi/go-diff v1.3.1 // indirect
5771
github.com/spf13/pflag v1.0.5 // indirect
72+
github.com/texttheater/golang-levenshtein v1.0.1 // indirect
5873
github.com/urfave/cli v1.22.2 // indirect
59-
golang.org/x/crypto v0.12.0 // indirect
60-
golang.org/x/net v0.14.0 // indirect
61-
golang.org/x/oauth2 v0.11.0 // indirect
62-
golang.org/x/sys v0.11.0 // indirect
63-
golang.org/x/term v0.11.0 // indirect
64-
golang.org/x/text v0.12.0 // indirect
74+
github.com/virtuald/go-ordered-json v0.0.0-20170621173500-b18e6e673d74 // indirect
75+
golang.org/x/crypto v0.18.0 // indirect
76+
golang.org/x/net v0.20.0 // indirect
77+
golang.org/x/oauth2 v0.16.0 // indirect
78+
golang.org/x/sync v0.5.0 // indirect
79+
golang.org/x/sys v0.16.0 // indirect
80+
golang.org/x/term v0.16.0 // indirect
81+
golang.org/x/text v0.14.0 // indirect
6582
golang.org/x/time v0.3.0 // indirect
66-
google.golang.org/appengine v1.6.7 // indirect
67-
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect
68-
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
69-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
70-
google.golang.org/grpc v1.57.0 // indirect
71-
google.golang.org/protobuf v1.31.0 // indirect
83+
google.golang.org/appengine v1.6.8 // indirect
84+
google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac // indirect
85+
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect
86+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
87+
google.golang.org/grpc v1.61.0 // indirect
88+
google.golang.org/protobuf v1.32.0 // indirect
7289
gopkg.in/inf.v0 v0.9.1 // indirect
7390
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
7491
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)