Skip to content

Commit 5ab4f9a

Browse files
committed
chore: Bump github action versions
1 parent 2fee0f4 commit 5ab4f9a

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.github/workflows/helm-charts-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
- name: Fetch history
2929
run: git fetch --prune --unshallow
@@ -34,12 +34,12 @@ jobs:
3434
git config user.email "[email protected]"
3535
3636
- name: Install Helm
37-
uses: azure/setup-helm@v1
37+
uses: azure/setup-helm@v4
3838
with:
3939
version: v3.6.3
4040

4141
- name: Run chart-releaser
42-
uses: helm/chart-releaser-action@v1.2.1
42+
uses: helm/chart-releaser-action@v1
4343
env:
4444
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
4545
CR_SKIP_EXISTING: true

.github/workflows/helm-charts-test.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,42 +8,43 @@ jobs:
88
strategy:
99
matrix:
1010
node_image_version:
11-
- v1.21.1 # default used by helm/[email protected] (kubernetes-sigs/[email protected])
11+
- v1.21.1
1212
- v1.22.4
1313
name: lint-test (k8s ${{ matrix.node_image_version }})
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717

1818
- name: Fetch history
1919
run: git fetch --prune --unshallow
2020

2121
- name: Set up Helm
22-
uses: azure/setup-helm@v1
22+
uses: azure/setup-helm@v4
2323
with:
2424
version: v3.6.3
2525

26-
- uses: actions/setup-python@v2
26+
- uses: actions/setup-python@v5
2727
with:
28-
python-version: 3.7
28+
python-version: '3.x'
29+
check-latest: true
2930

3031
- name: Install chart-testing tools
3132
id: lint
32-
uses: helm/chart-testing-action@v2.0.1
33+
uses: helm/chart-testing-action@v2
3334

3435
- name: Run chart-testing (list-changed)
3536
id: list-changed
3637
run: |
3738
changed=$(ct list-changed)
3839
if [[ -n "$changed" ]]; then
39-
echo "::set-output name=changed::true"
40+
echo "changed=true" >> "$GITHUB_OUTPUT"
4041
fi
4142
4243
- name: Run chart-testing (lint)
4344
run: ct lint
4445

4546
- name: Create kind cluster
46-
uses: helm/kind-action@v1.2.0
47+
uses: helm/kind-action@v1.10.0
4748
with:
4849
node_image: kindest/node:${{ matrix.node_image_version }}
4950
if: steps.list-changed.outputs.changed == 'true'

0 commit comments

Comments
 (0)