5252
5353 steps :
5454 - name : Checkout trusted workflow sources
55- uses : actions/checkout@v4
55+ uses : actions/checkout@v6
5656 with :
5757 # Keep generated composite actions on the trusted base branch. The PR
5858 # application code is checked out separately under ./app after source
@@ -166,7 +166,7 @@ jobs:
166166
167167 - name : Checkout PR commit
168168 if : steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true'
169- uses : actions/checkout@v4
169+ uses : actions/checkout@v6
170170 with :
171171 ref : ${{ env.PR_SHA }}
172172 path : app
@@ -253,7 +253,7 @@ jobs:
253253 - name : Create initial PR comment
254254 if : steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success')
255255 id : create-comment
256- uses : actions/github-script@v7
256+ uses : actions/github-script@v8
257257 with :
258258 script : |
259259 const result = await github.rest.issues.createComment({
@@ -266,7 +266,7 @@ jobs:
266266
267267 - name : Set deployment links
268268 if : steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success')
269- uses : actions/github-script@v7
269+ uses : actions/github-script@v8
270270 with :
271271 script : |
272272 const workflowUrl = `${process.env.GITHUB_SERVER_URL}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`;
@@ -279,7 +279,7 @@ jobs:
279279 - name : Initialize GitHub deployment
280280 if : steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success')
281281 id : init-deployment
282- uses : actions/github-script@v7
282+ uses : actions/github-script@v8
283283 with :
284284 script : |
285285 const deployment = await github.rest.repos.createDeployment({
@@ -304,7 +304,7 @@ jobs:
304304
305305 - name : Update PR comment with build status
306306 if : steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success')
307- uses : actions/github-script@v7
307+ uses : actions/github-script@v8
308308 with :
309309 script : |
310310 const commentId = Number("${{ steps.create-comment.outputs.comment-id }}");
@@ -343,7 +343,7 @@ jobs:
343343
344344 - name : Update PR comment with deploy status
345345 if : steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success')
346- uses : actions/github-script@v7
346+ uses : actions/github-script@v8
347347 with :
348348 script : |
349349 const commentId = Number("${{ steps.create-comment.outputs.comment-id }}");
@@ -397,7 +397,7 @@ jobs:
397397
398398 - name : Finalize deployment status
399399 if : always() && steps.config.outputs.ready == 'true' && steps.source.outputs.allowed == 'true' && (steps.check-app.outputs.exists == 'true' || steps.setup-review-app.outcome == 'success')
400- uses : actions/github-script@v7
400+ uses : actions/github-script@v8
401401 with :
402402 script : |
403403 const commentId = Number("${{ steps.create-comment.outputs.comment-id }}");
0 commit comments