File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,22 +18,22 @@ jobs:
1818 github.event.workflow_run.conclusion == 'success'
1919 steps :
2020 - name : Download Coverage Artifacts
21- uses : actions/download-artifact@v4
21+ uses : actions/download-artifact@v8
2222 with :
2323 run-id : ${{ github.event.workflow_run.id }}
2424 github-token : ${{ secrets.A2A_BOT_PAT }}
2525 name : coverage-data
2626
2727 - name : Upload Coverage Report
2828 id : upload-report
29- uses : actions/upload-artifact@v4
29+ uses : actions/upload-artifact@v7
3030 with :
3131 name : coverage-report
3232 path : coverage/
3333 retention-days : 14
3434
3535 - name : Post Comment
36- uses : actions/github-script@v6
36+ uses : actions/github-script@v8
3737 env :
3838 ARTIFACT_URL : ${{ steps.upload-report.outputs.artifact-url }}
3939 with :
Original file line number Diff line number Diff line change 6060 # Coverage comparison for PRs (only on Python 3.13 to avoid duplicate work)
6161 - name : Checkout Base Branch
6262 if : github.event_name == 'pull_request' && matrix.python-version == '3.13'
63- uses : actions/checkout@v4
63+ uses : actions/checkout@v6
6464 with :
6565 ref : ${{ github.event.pull_request.base.ref || 'main' }}
6666 clean : true
7373
7474 - name : Checkout PR Branch (Restore)
7575 if : github.event_name == 'pull_request' && matrix.python-version == '3.13'
76- uses : actions/checkout@v4
76+ uses : actions/checkout@v6
7777 with :
7878 clean : true
7979
9191 echo ${{ github.event.pull_request.base.ref || 'main' }} > ./BASE_BRANCH
9292
9393 - name : Upload Coverage Artifacts
94- uses : actions/upload-artifact@v4
94+ uses : actions/upload-artifact@v7
9595 if : github.event_name == 'pull_request' && matrix.python-version == '3.13'
9696 with :
9797 name : coverage-data
@@ -109,7 +109,7 @@ jobs:
109109 run : uv run --all-extras pytest --cov=a2a --cov-report term --cov-fail-under=88
110110
111111 - name : Upload Artifact (base)
112- uses : actions/upload-artifact@v4
112+ uses : actions/upload-artifact@v7
113113 if : github.event_name != 'pull_request' && matrix.python-version == '3.13'
114114 with :
115115 name : coverage-report
You can’t perform that action at this time.
0 commit comments