@@ -135,15 +135,15 @@ jobs:
135135 # On Default branch
136136 - name : " On Default Branch"
137137 if : steps.detection.outputs.defaultbranch == matrix.branch
138- uses : actions/github-script@v8.0.0
138+ uses : actions/github-script@v8
139139 with :
140140 script : |
141141 core.info("On Default branch - don't do anything");
142142
143143 # On Non-Default branch
144144 - name : " On Non-Default branch"
145145 if : steps.detection.outputs.defaultbranch != matrix.branch
146- uses : actions/github-script@v8.0.0
146+ uses : actions/github-script@v8
147147 with :
148148 script : |
149149 core.info('On non-default branch');
@@ -229,7 +229,7 @@ jobs:
229229 && steps.find-pull-request.outputs.number == ''
230230 && steps.aheadbehind.outputs.ahead != 0
231231 && steps.aheadbehind.outputs.dayssinceupdate > 7
232- uses : actions/github-script@v8.0.0
232+ uses : actions/github-script@v8
233233 with :
234234 script : |
235235 core.info('URL: ${{steps.open-pr.outputs.pr_url}}');
@@ -261,7 +261,7 @@ jobs:
261261 && steps.aheadbehind.outputs.behind != 0
262262 && steps.aheadbehind.outputs.ahead != 0
263263 && steps.aheadbehind.outputs.dayssinceupdate > 7
264- uses : actions/github-script@v8.0.0
264+ uses : actions/github-script@v8
265265 with :
266266 script : |
267267 core.info('Rebase?');
@@ -294,7 +294,7 @@ jobs:
294294 if : |-
295295 steps.detection.outputs.defaultbranch != matrix.branch
296296 && steps.find-pull-request.outputs.number == ''
297- uses : actions/github-script@v8.0.0
297+ uses : actions/github-script@v8
298298 with :
299299 script : |
300300 core.info('Ahead: ${{steps.aheadbehind.outputs.ahead}}');
0 commit comments