13
13
outputs :
14
14
any_changed : ${{ steps.changed-files.outputs.any_changed }}
15
15
steps :
16
- - uses : actions/checkout@v4
16
+ - uses : actions/checkout@v5
17
17
with :
18
18
fetch-depth : 0
19
19
- name : Check if documentation related files changed
33
33
outputs :
34
34
any_changed : ${{ steps.changed-files.outputs.any_changed }}
35
35
steps :
36
- - uses : actions/checkout@v4
36
+ - uses : actions/checkout@v5
37
37
with :
38
38
fetch-depth : 0
39
39
- name : Check if Helm Chart related files changed
59
59
env :
60
60
PRETTIER_VERSION : 3.2.5
61
61
steps :
62
- - uses : actions/checkout@v4
62
+ - uses : actions/checkout@v5
63
63
- name : install markdownlint and prettier
64
64
if : needs.docs-changed.outputs.any_changed == 'true'
65
65
run : npm install -g markdownlint-cli prettier@${PRETTIER_VERSION}
73
73
YQ_VERSION : 4.43.1
74
74
SHELLCHECK_VERSION : 0.9.0
75
75
steps :
76
- - uses : actions/checkout@v4
76
+ - uses : actions/checkout@v5
77
77
- name : install shellcheck
78
78
run : |
79
79
curl --retry 10 --retry-max-time 120 --retry-delay 5 -Lo- https://github.com/koalaman/shellcheck/releases/download/v${{ env.SHELLCHECK_VERSION }}/shellcheck-v${{ env.SHELLCHECK_VERSION }}.linux.x86_64.tar.xz | tar -xJf -
92
92
env :
93
93
PRETTIER_VERSION : 2.8.8
94
94
steps :
95
- - uses : actions/checkout@v4
95
+ - uses : actions/checkout@v5
96
96
- name : install yamllint
97
97
if : needs.chart-changed.outputs.any_changed == 'true'
98
98
run : npm install -g prettier@${PRETTIER_VERSION}
@@ -104,7 +104,7 @@ jobs:
104
104
runs-on : ubuntu-22.04
105
105
needs : [chart-changed]
106
106
steps :
107
- - uses : actions/checkout@v4
107
+ - uses : actions/checkout@v5
108
108
- name : Setup Helm
109
109
run : |
110
110
sudo rm -f /usr/local/bin/helm
@@ -123,7 +123,7 @@ jobs:
123
123
runs-on : ubuntu-22.04
124
124
needs : [docs-changed]
125
125
steps :
126
- - uses : actions/checkout@v4
126
+ - uses : actions/checkout@v5
127
127
- uses : gaurav-nelson/github-action-markdown-link-check@v1
128
128
with :
129
129
config-file : " .markdown_link_check.json"
@@ -135,7 +135,7 @@ jobs:
135
135
runs-on : ubuntu-22.04
136
136
needs : [docs-changed]
137
137
steps :
138
- - uses : actions/checkout@v4
138
+ - uses : actions/checkout@v5
139
139
- name : Lint markdown links
140
140
if : needs.docs-changed.outputs.any_changed == 'true'
141
141
run : |
@@ -144,7 +144,7 @@ jobs:
144
144
check-configuration-keys :
145
145
runs-on : ubuntu-22.04
146
146
steps :
147
- - uses : actions/checkout@v4
147
+ - uses : actions/checkout@v5
148
148
- uses : actions/setup-python@v5
149
149
with :
150
150
python-version : " 3.11"
@@ -159,7 +159,7 @@ jobs:
159
159
runs-on : ubuntu-latest
160
160
needs : [chart-changed]
161
161
steps :
162
- - uses : actions/checkout@v4
162
+ - uses : actions/checkout@v5
163
163
- uses : actions/setup-go@v5
164
164
if : needs.chart-changed.outputs.any_changed == 'true'
165
165
with :
@@ -180,7 +180,7 @@ jobs:
180
180
- helmlint
181
181
- chart-changed
182
182
steps :
183
- - uses : actions/checkout@v4
183
+ - uses : actions/checkout@v5
184
184
- name : Setup go
185
185
if : needs.chart-changed.outputs.any_changed == 'true'
186
186
uses : actions/setup-go@v5
@@ -222,6 +222,6 @@ jobs:
222
222
name : Check for unused templates
223
223
runs-on : ubuntu-22.04
224
224
steps :
225
- - uses : actions/checkout@v4
225
+ - uses : actions/checkout@v5
226
226
- name : Check for unused templates
227
227
run : make check-unused-templates
0 commit comments