-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use cosign to verify the release and update chart-testing to v3.8.0 (#…
…116) * use cosign to verify the release artifact Signed-off-by: cpanato <[email protected]> * bump chart-testing to v3.8.0 Signed-off-by: cpanato <[email protected]> --------- Signed-off-by: cpanato <[email protected]>
- Loading branch information
Showing
4 changed files
with
26 additions
and
14 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
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ A GitHub Action for installing the [helm/chart-testing](https://github.com/helm/ | |
|
||
For more information on inputs, see the [API Documentation](https://developer.github.com/v3/repos/releases/#input) | ||
|
||
- `version`: The chart-testing version to install (default: `v3.7.1`) | ||
- `version`: The chart-testing version to install (default: `v3.8.0`) | ||
- `yamllint_version`: The chart-testing version to install (default: `1.27.1`) | ||
- `yamale_version`: The chart-testing version to install (default: `3.0.4`) | ||
|
||
|
@@ -44,15 +44,15 @@ jobs: | |
- name: Set up Helm | ||
uses: azure/setup-helm@v3 | ||
with: | ||
version: v3.10.0 | ||
version: v3.11.2 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
check-latest: true | ||
|
||
- name: Set up chart-testing | ||
uses: helm/chart-testing-action@v2.3.1 | ||
uses: helm/chart-testing-action@v2.4.0 | ||
|
||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
|
@@ -67,13 +67,12 @@ jobs: | |
run: ct lint --target-branch ${{ github.event.repository.default_branch }} | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
if: steps.list-changed.outputs.changed == 'true' | ||
uses: helm/[email protected] | ||
|
||
- name: Run chart-testing (install) | ||
run: ct install --target-branch ${{ github.event.repository.default_branch }} | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
run: ct install --target-branch ${{ github.event.repository.default_branch }} | ||
``` | ||
This uses [`helm/kind-action`](https://www.github.com/helm/kind-action) GitHub Action to spin up a [kind](https://kind.sigs.k8s.io/) Kubernetes cluster, | ||
|
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