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 : Setup Helm
109109 run : |
110110 sudo rm -f /usr/local/bin/helm
@@ -123,7 +123,7 @@ jobs:
123123 runs-on : ubuntu-22.04
124124 needs : [docs-changed]
125125 steps :
126- - uses : actions/checkout@v4
126+ - uses : actions/checkout@v5
127127 - uses : gaurav-nelson/github-action-markdown-link-check@v1
128128 with :
129129 config-file : " .markdown_link_check.json"
@@ -135,7 +135,7 @@ jobs:
135135 runs-on : ubuntu-22.04
136136 needs : [docs-changed]
137137 steps :
138- - uses : actions/checkout@v4
138+ - uses : actions/checkout@v5
139139 - name : Lint markdown links
140140 if : needs.docs-changed.outputs.any_changed == 'true'
141141 run : |
@@ -144,7 +144,7 @@ jobs:
144144 check-configuration-keys :
145145 runs-on : ubuntu-22.04
146146 steps :
147- - uses : actions/checkout@v4
147+ - uses : actions/checkout@v5
148148 - uses : actions/setup-python@v5
149149 with :
150150 python-version : " 3.11"
@@ -159,7 +159,7 @@ jobs:
159159 runs-on : ubuntu-latest
160160 needs : [chart-changed]
161161 steps :
162- - uses : actions/checkout@v4
162+ - uses : actions/checkout@v5
163163 - uses : actions/setup-go@v5
164164 if : needs.chart-changed.outputs.any_changed == 'true'
165165 with :
@@ -180,7 +180,7 @@ jobs:
180180 - helmlint
181181 - chart-changed
182182 steps :
183- - uses : actions/checkout@v4
183+ - uses : actions/checkout@v5
184184 - name : Setup go
185185 if : needs.chart-changed.outputs.any_changed == 'true'
186186 uses : actions/setup-go@v5
@@ -222,6 +222,6 @@ jobs:
222222 name : Check for unused templates
223223 runs-on : ubuntu-22.04
224224 steps :
225- - uses : actions/checkout@v4
225+ - uses : actions/checkout@v5
226226 - name : Check for unused templates
227227 run : make check-unused-templates
0 commit comments