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 2727 steps :
2828 - name : check-spelling
2929 id : spelling
30- uses : check-spelling/check-spelling@main
30+ uses : check-spelling/check-spelling@a35147f799f30f8739c33f92222c847214e82e67 # https://github.com/check-spelling/check-spelling/issues/103#issuecomment-4181666219
3131 with :
3232 suppress_push_for_open_pull_request : ${{ github.actor != 'dependabot[bot]' && 1 }}
3333 checkout : true
Original file line number Diff line number Diff line change 5959 # Coverage comparison for PRs (only on Python 3.14 to avoid duplicate work)
6060 - name : Checkout Base Branch
6161 if : github.event_name == 'pull_request' && matrix.python-version == '3.14'
62- uses : actions/checkout@v4
62+ uses : actions/checkout@v6
6363 with :
6464 ref : ${{ github.event.pull_request.base.ref || 'main' }}
6565 clean : true
7575
7676 - name : Checkout PR Branch (Restore)
7777 if : github.event_name == 'pull_request' && matrix.python-version == '3.14'
78- uses : actions/checkout@v4
78+ uses : actions/checkout@v6
7979 with :
8080 clean : true
8181
9393 echo ${{ github.event.pull_request.base.ref || 'main' }} > ./BASE_BRANCH
9494
9595 - name : Upload Coverage Artifacts
96- uses : actions/upload-artifact@v4
96+ uses : actions/upload-artifact@v7
9797 if : github.event_name == 'pull_request' && matrix.python-version == '3.14'
9898 with :
9999 name : coverage-data
@@ -111,7 +111,7 @@ jobs:
111111 run : uv run pytest --cov=a2a --cov-report term --cov-fail-under=88
112112
113113 - name : Upload Artifact (base)
114- uses : actions/upload-artifact@v4
114+ uses : actions/upload-artifact@v7
115115 if : github.event_name != 'pull_request' && matrix.python-version == '3.14'
116116 with :
117117 name : coverage-report
You can’t perform that action at this time.
0 commit comments