1111 name : Lint Code
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v4
14+ - uses : actions/checkout@v5
1515
1616 - name : Setup Node.js
1717 uses : actions/setup-node@v4
4343 matrix :
4444 node-version : [16.x, 18.x, 20.x]
4545 steps :
46- - uses : actions/checkout@v4
46+ - uses : actions/checkout@v5
4747
4848 - name : Setup Node.js ${{ matrix.node-version }}
4949 uses : actions/setup-node@v4
8080 matrix :
8181 python-version : ['3.9', '3.10', '3.11']
8282 steps :
83- - uses : actions/checkout@v4
83+ - uses : actions/checkout@v5
8484
8585 - name : Setup Python ${{ matrix.python-version }}
8686 uses : actions/setup-python@v4
@@ -136,7 +136,7 @@ jobs:
136136 runs-on : windows-latest
137137 needs : lint
138138 steps :
139- - uses : actions/checkout@v4
139+ - uses : actions/checkout@v5
140140
141141 - name : Run Pester tests
142142 shell : pwsh
@@ -157,7 +157,7 @@ jobs:
157157 name : Security Scan
158158 runs-on : ubuntu-latest
159159 steps :
160- - uses : actions/checkout@v4
160+ - uses : actions/checkout@v5
161161
162162 - name : Run Trivy vulnerability scanner
163163 uses : aquasecurity/trivy-action@master
@@ -197,7 +197,7 @@ jobs:
197197 needs : [test-node, test-python, test-powershell]
198198 if : github.event_name == 'push' && github.ref == 'refs/heads/main'
199199 steps :
200- - uses : actions/checkout@v4
200+ - uses : actions/checkout@v5
201201
202202 - name : Set up Docker Buildx
203203 uses : docker/setup-buildx-action@v3
@@ -251,7 +251,7 @@ jobs:
251251 if : github.event_name == 'push' && github.ref == 'refs/heads/main'
252252 environment : production
253253 steps :
254- - uses : actions/checkout@v4
254+ - uses : actions/checkout@v5
255255
256256 - name : Deploy to Kubernetes
257257 run : |
@@ -269,7 +269,7 @@ jobs:
269269 needs : deploy
270270 if : github.event_name == 'push' && github.ref == 'refs/heads/main'
271271 steps :
272- - uses : actions/checkout@v4
272+ - uses : actions/checkout@v5
273273
274274 - name : Create Release
275275 if : startsWith(github.ref, 'refs/tags/')
0 commit comments