Skip to content

Commit 8aaf513

Browse files
authored
Merge branch 'main' into ci-fix-vertex-import
2 parents 127e4ef + 0b38305 commit 8aaf513

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/coverage-comment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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:

.github/workflows/unit-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
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
@@ -73,7 +73,7 @@ jobs:
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

@@ -91,7 +91,7 @@ jobs:
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

0 commit comments

Comments
 (0)