@@ -59,15 +59,15 @@ jobs:
5959 steps :
6060 - name : Checkout Repository with SHA
6161 if : ${{ inputs.sha != '' }}
62- uses : actions/checkout@v4
62+ uses : actions/checkout@v5
6363 with :
6464 fetch-depth : 0
6565 submodules : ' recursive'
6666 ref : ${{ inputs.sha }}
6767
6868 - name : Checkout Repository without SHA
6969 if : ${{ inputs.sha == '' }}
70- uses : actions/checkout@v4
70+ uses : actions/checkout@v5
7171 with :
7272 fetch-depth : 0
7373 submodules : ' recursive'
9898 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
9999
100100 - name : Setup Python
101- uses : actions/setup-python@v5
101+ uses : actions/setup-python@v6
102102 with :
103103 python-version : ${{ inputs.run-eol-python-version == 'true' && env.EOL_PYTHON_VERSION || inputs.python-version || env.DEFAULT_PYTHON_VERSION }}
104104
@@ -127,15 +127,15 @@ jobs:
127127
128128 - name : Upload Test Report as Artifact
129129 if : always()
130- uses : actions/upload-artifact@v4
130+ uses : actions/upload-artifact@v5
131131 with :
132132 name : test-report-file
133133 if-no-files-found : ignore
134134 path : ' *.xml'
135135 retention-days : 1
136136
137137 - name : Update PR Check Run
138- uses : actions/github-script@v7
138+ uses : actions/github-script@v8
139139 id : update-check-run
140140 if : ${{ inputs.pull_request_number != '' && fromJson(steps.commit-hash.outputs.data).repository.pullRequest.headRef.target.oid == inputs.sha }}
141141 env :
@@ -170,7 +170,7 @@ jobs:
170170
171171 steps :
172172 - name : Checkout code
173- uses : actions/checkout@v4
173+ uses : actions/checkout@v5
174174 with :
175175 fetch-depth : 0
176176 submodules : ' recursive'
@@ -200,7 +200,7 @@ jobs:
200200
201201 steps :
202202 - name : Set up Python
203- uses : actions/setup-python@v5
203+ uses : actions/setup-python@v6
204204 with :
205205 python-version : ' 3.x'
206206
@@ -237,18 +237,18 @@ jobs:
237237
238238 steps :
239239 - name : Checkout code
240- uses : actions/checkout@v4
240+ uses : actions/checkout@v5
241241 with :
242242 fetch-depth : 0
243243 submodules : ' recursive'
244244
245245 - name : Download test report
246- uses : actions/download-artifact@v4
246+ uses : actions/download-artifact@v6
247247 with :
248248 name : test-report-file
249249
250250 - name : Set up Python
251- uses : actions/setup-python@v5
251+ uses : actions/setup-python@v6
252252 with :
253253 python-version : ' 3.x'
254254
@@ -294,7 +294,7 @@ jobs:
294294 steps :
295295 - name : Notify Slack
296296 id : main_message
297- uses : slackapi/slack-github-action@v2.1.0
297+ uses : slackapi/slack-github-action@v2
298298 with :
299299 method : chat.postMessage
300300 token : ${{ secrets.SLACK_BOT_TOKEN }}
@@ -326,7 +326,7 @@ jobs:
326326
327327 - name : Test summary thread
328328 if : success()
329- uses : slackapi/slack-github-action@v2.1.0
329+ uses : slackapi/slack-github-action@v2
330330 with :
331331 method : chat.postMessage
332332 token : ${{ secrets.SLACK_BOT_TOKEN }}
0 commit comments