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 : Lint helm chart
109
109
if : needs.chart-changed.outputs.any_changed == 'true'
110
110
run : |
@@ -115,7 +115,7 @@ jobs:
115
115
runs-on : ubuntu-22.04
116
116
needs : [docs-changed]
117
117
steps :
118
- - uses : actions/checkout@v4
118
+ - uses : actions/checkout@v5
119
119
- uses : gaurav-nelson/github-action-markdown-link-check@v1
120
120
with :
121
121
config-file : " .markdown_link_check.json"
@@ -127,7 +127,7 @@ jobs:
127
127
runs-on : ubuntu-22.04
128
128
needs : [docs-changed]
129
129
steps :
130
- - uses : actions/checkout@v4
130
+ - uses : actions/checkout@v5
131
131
- name : Lint markdown links
132
132
if : needs.docs-changed.outputs.any_changed == 'true'
133
133
run : |
@@ -136,7 +136,7 @@ jobs:
136
136
check-configuration-keys :
137
137
runs-on : ubuntu-22.04
138
138
steps :
139
- - uses : actions/checkout@v4
139
+ - uses : actions/checkout@v5
140
140
- uses : actions/setup-python@v5
141
141
with :
142
142
python-version : " 3.11"
@@ -151,7 +151,7 @@ jobs:
151
151
runs-on : ubuntu-latest
152
152
needs : [chart-changed]
153
153
steps :
154
- - uses : actions/checkout@v4
154
+ - uses : actions/checkout@v5
155
155
- uses : actions/setup-go@v5
156
156
if : needs.chart-changed.outputs.any_changed == 'true'
157
157
with :
@@ -172,7 +172,7 @@ jobs:
172
172
- helmlint
173
173
- chart-changed
174
174
steps :
175
- - uses : actions/checkout@v4
175
+ - uses : actions/checkout@v5
176
176
- name : Setup go
177
177
if : needs.chart-changed.outputs.any_changed == 'true'
178
178
uses : actions/setup-go@v5
@@ -206,6 +206,6 @@ jobs:
206
206
name : Check for unused templates
207
207
runs-on : ubuntu-22.04
208
208
steps :
209
- - uses : actions/checkout@v4
209
+ - uses : actions/checkout@v5
210
210
- name : Check for unused templates
211
211
run : make check-unused-templates
0 commit comments