1313 outputs :
1414 any_changed : ${{ steps.changed-files.outputs.any_changed }}
1515 steps :
16- - uses : actions/checkout@v4
16+ - uses : actions/checkout@v5
1717 with :
1818 fetch-depth : 0
1919 - name : Check if documentation related files changed
3333 outputs :
3434 any_changed : ${{ steps.changed-files.outputs.any_changed }}
3535 steps :
36- - uses : actions/checkout@v4
36+ - uses : actions/checkout@v5
3737 with :
3838 fetch-depth : 0
3939 - name : Check if Helm Chart related files changed
5959 env :
6060 PRETTIER_VERSION : 3.2.5
6161 steps :
62- - uses : actions/checkout@v4
62+ - uses : actions/checkout@v5
6363 - name : install markdownlint and prettier
6464 if : needs.docs-changed.outputs.any_changed == 'true'
6565 run : npm install -g markdownlint-cli prettier@${PRETTIER_VERSION}
7373 YQ_VERSION : 4.43.1
7474 SHELLCHECK_VERSION : 0.9.0
7575 steps :
76- - uses : actions/checkout@v4
76+ - uses : actions/checkout@v5
7777 - name : install shellcheck
7878 run : |
7979 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 -
9292 env :
9393 PRETTIER_VERSION : 2.8.8
9494 steps :
95- - uses : actions/checkout@v4
95+ - uses : actions/checkout@v5
9696 - name : install yamllint
9797 if : needs.chart-changed.outputs.any_changed == 'true'
9898 run : npm install -g prettier@${PRETTIER_VERSION}
@@ -104,7 +104,7 @@ jobs:
104104 runs-on : ubuntu-22.04
105105 needs : [chart-changed]
106106 steps :
107- - uses : actions/checkout@v4
107+ - uses : actions/checkout@v5
108108 - name : Lint helm chart
109109 if : needs.chart-changed.outputs.any_changed == 'true'
110110 run : |
@@ -115,7 +115,7 @@ jobs:
115115 runs-on : ubuntu-22.04
116116 needs : [docs-changed]
117117 steps :
118- - uses : actions/checkout@v4
118+ - uses : actions/checkout@v5
119119 - uses : gaurav-nelson/github-action-markdown-link-check@v1
120120 with :
121121 config-file : " .markdown_link_check.json"
@@ -127,7 +127,7 @@ jobs:
127127 runs-on : ubuntu-22.04
128128 needs : [docs-changed]
129129 steps :
130- - uses : actions/checkout@v4
130+ - uses : actions/checkout@v5
131131 - name : Lint markdown links
132132 if : needs.docs-changed.outputs.any_changed == 'true'
133133 run : |
@@ -136,7 +136,7 @@ jobs:
136136 check-configuration-keys :
137137 runs-on : ubuntu-22.04
138138 steps :
139- - uses : actions/checkout@v4
139+ - uses : actions/checkout@v5
140140 - uses : actions/setup-python@v5
141141 with :
142142 python-version : " 3.11"
@@ -151,7 +151,7 @@ jobs:
151151 runs-on : ubuntu-latest
152152 needs : [chart-changed]
153153 steps :
154- - uses : actions/checkout@v4
154+ - uses : actions/checkout@v5
155155 - uses : actions/setup-go@v5
156156 if : needs.chart-changed.outputs.any_changed == 'true'
157157 with :
@@ -172,7 +172,7 @@ jobs:
172172 - helmlint
173173 - chart-changed
174174 steps :
175- - uses : actions/checkout@v4
175+ - uses : actions/checkout@v5
176176 - name : Setup go
177177 if : needs.chart-changed.outputs.any_changed == 'true'
178178 uses : actions/setup-go@v5
@@ -206,6 +206,6 @@ jobs:
206206 name : Check for unused templates
207207 runs-on : ubuntu-22.04
208208 steps :
209- - uses : actions/checkout@v4
209+ - uses : actions/checkout@v5
210210 - name : Check for unused templates
211211 run : make check-unused-templates
0 commit comments