File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -21,21 +21,20 @@ jobs:
2121 # Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and
2222 # yamllint (https://github.com/adrienverge/yamllint) which require Python
2323 - name : Set up Python
24- uses : actions/setup-python@v4
24+ uses : actions/setup-python@v5
2525 with :
26- python-version : " 3.10"
26+ python-version : ' 3.x'
27+ check-latest : true
2728
2829 - name : Set up chart-testing
29- uses : helm/chart-testing-action@v2.6.1
30+ uses : helm/chart-testing-action@v2.7.0
3031
3132 - name : Run chart-testing (list-changed)
3233 id : list-changed
3334 run : |
3435 changed=$(ct --config ./.github/configs/ct-lint.yaml list-changed)
35- charts=$(echo "$changed" | tr '\n' ' ' | xargs)
3636 if [[ -n "$changed" ]]; then
37- echo "::set-output name=changed::true"
38- echo "::set-output name=changed_charts::$charts"
37+ echo "changed=true" >> "$GITHUB_OUTPUT"
3938 fi
4039
4140 - name : Run chart-testing (lint)
Original file line number Diff line number Diff line change 1111 runs-on : ubuntu-latest
1212 steps :
1313 - name : Checkout
14- uses : actions/checkout@v3
14+ uses : actions/checkout@v4
1515 with :
1616 fetch-depth : 0
1717
2626 helm repo add bitnami https://charts.bitnami.com/bitnami
2727
2828 - name : Run chart-releaser
29- uses : helm/chart-releaser-action@v1.6 .0
29+ uses : helm/chart-releaser-action@v1.7 .0
3030 with :
3131 charts_dir : charts
3232 skip_existing : true
You can’t perform that action at this time.
0 commit comments