forked from zitadel/zitadel-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: bump the testsuite group across 1 directory with 5 updates (zit…
…adel#197) * test: bump the testsuite group across 1 directory with 5 updates Bumps the testsuite group with 4 updates in the / directory: [github.com/gruntwork-io/terratest](https://github.com/gruntwork-io/terratest), [github.com/zitadel/zitadel-go/v2](https://github.com/zitadel/zitadel-go), [k8s.io/api](https://github.com/kubernetes/api) and [k8s.io/client-go](https://github.com/kubernetes/client-go). Updates `github.com/gruntwork-io/terratest` from 0.46.13 to 0.46.14 - [Release notes](https://github.com/gruntwork-io/terratest/releases) - [Commits](gruntwork-io/terratest@v0.46.13...v0.46.14) Updates `github.com/zitadel/zitadel-go/v2` from 2.1.11 to 2.2.1 - [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.1.11...v2.2.1) Updates `k8s.io/api` from 0.29.3 to 0.30.0 - [Commits](kubernetes/api@v0.29.3...v0.30.0) Updates `k8s.io/apimachinery` from 0.29.3 to 0.30.0 - [Commits](kubernetes/apimachinery@v0.29.3...v0.30.0) Updates `k8s.io/client-go` from 0.29.3 to 0.30.0 - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](kubernetes/client-go@v0.29.3...v0.30.0) --- updated-dependencies: - dependency-name: github.com/gruntwork-io/terratest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: testsuite - dependency-name: github.com/zitadel/zitadel-go/v2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: testsuite - dependency-name: k8s.io/api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: testsuite - dependency-name: k8s.io/apimachinery dependency-type: direct:production update-type: version-update:semver-minor dependency-group: testsuite - dependency-name: k8s.io/client-go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: testsuite ... Signed-off-by: dependabot[bot] <support@github.com> * tidy --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Elio Bischof <elio@zitadel.com>
- Loading branch information
1 parent
bc6f831
commit 72343a8
Showing
6 changed files
with
126 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: 'Lint Charts' | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'charts/zitadel/templates/**' | ||
- 'charts/zitadel/values.yaml' | ||
- 'charts/zitadel/Chart.yaml' | ||
|
||
jobs: | ||
|
||
lint: | ||
|
||
runs-on: 'ubuntu-20.04' | ||
|
||
steps: | ||
- id: 'checkout' | ||
name: Check The Repo Out | ||
uses: 'actions/checkout@v3' | ||
with: | ||
fetch-depth: 0 | ||
|
||
- id: 'set-up-helm' | ||
name: Install Helm (The Chart Testing CLI Depends On It) | ||
uses: 'azure/setup-helm@v3.5' | ||
with: | ||
version: '${{ matrix.helm-version }}' | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- id: 'set-up-python' | ||
name: Install Python (The Chart Testing CLI Depends On It) | ||
uses: 'actions/setup-python@v3.1.4' | ||
with: | ||
python-version: 3.11.4 | ||
|
||
- id: 'set-up-chart-testing' | ||
name: Install Chart Testing CLI | ||
uses: 'helm/chart-testing-action@v2.6.1' | ||
with: | ||
version: 'v3.8.0' | ||
|
||
- id: 'list-changed' | ||
name: Check If The Chart Has Changes (not only comments, for example) | ||
run: | | ||
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }}) | ||
if [[ -n "$changed" ]]; then | ||
echo "changed=true" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Get Changed Test Relevant Files | ||
id: 'list-changed-test' | ||
uses: tj-actions/changed-files@v42 | ||
with: | ||
files: | | ||
go.mod | ||
go.sum | ||
charts/zitadel/acceptance/** | ||
- id: 'lint' | ||
name: Lint The Chart | ||
run: 'ct lint --target-branch ${{ github.event.repository.default_branch }}' | ||
if: steps.list-changed.outputs.changed == 'true' || steps.list-changed-test.outputs.any_changed == 'true' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters