File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 23
23
runs-on : ubuntu-latest
24
24
steps :
25
25
- name : Checkout
26
- uses : actions/checkout@v2
26
+ uses : actions/checkout@v4
27
27
28
28
- name : Fetch history
29
29
run : git fetch --prune --unshallow
@@ -34,12 +34,12 @@ jobs:
34
34
git config user.email "[email protected] "
35
35
36
36
- name : Install Helm
37
- uses : azure/setup-helm@v1
37
+ uses : azure/setup-helm@v4
38
38
with :
39
39
version : v3.6.3
40
40
41
41
- name : Run chart-releaser
42
- uses : helm/chart-releaser-action@v1.2.1
42
+ uses : helm/chart-releaser-action@v1
43
43
env :
44
44
CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
45
45
CR_SKIP_EXISTING : true
Original file line number Diff line number Diff line change 8
8
strategy :
9
9
matrix :
10
10
node_image_version :
11
- -
v1.21.1 # default used by helm/[email protected] (kubernetes-sigs/[email protected] )
11
+ - v1.21.1
12
12
- v1.22.4
13
13
name : lint-test (k8s ${{ matrix.node_image_version }})
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v4
17
17
18
18
- name : Fetch history
19
19
run : git fetch --prune --unshallow
20
20
21
21
- name : Set up Helm
22
- uses : azure/setup-helm@v1
22
+ uses : azure/setup-helm@v4
23
23
with :
24
24
version : v3.6.3
25
25
26
- - uses : actions/setup-python@v2
26
+ - uses : actions/setup-python@v5
27
27
with :
28
- python-version : 3.7
28
+ python-version : ' 3.x'
29
+ check-latest : true
29
30
30
31
- name : Install chart-testing tools
31
32
id : lint
32
- uses : helm/chart-testing-action@v2.0.1
33
+ uses : helm/chart-testing-action@v2
33
34
34
35
- name : Run chart-testing (list-changed)
35
36
id : list-changed
36
37
run : |
37
38
changed=$(ct list-changed)
38
39
if [[ -n "$changed" ]]; then
39
- echo "::set-output name= changed:: true"
40
+ echo "changed= true" >> "$GITHUB_OUTPUT "
40
41
fi
41
42
42
43
- name : Run chart-testing (lint)
43
44
run : ct lint
44
45
45
46
- name : Create kind cluster
46
- uses : helm/kind-action@v1.2 .0
47
+ uses : helm/kind-action@v1.10 .0
47
48
with :
48
49
node_image : kindest/node:${{ matrix.node_image_version }}
49
50
if : steps.list-changed.outputs.changed == 'true'
You can’t perform that action at this time.
0 commit comments