Skip to content

Commit 1f33f9b

Browse files
committed
Update actions
1 parent 3f82cca commit 1f33f9b

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/lint.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff 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)

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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

@@ -26,7 +26,7 @@ jobs:
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

0 commit comments

Comments
 (0)