Skip to content

Commit cae99bc

Browse files
chore(deps): bump the github-actions group with 4 updates
Bumps the github-actions group with 4 updates: [actions/download-artifact](https://github.com/actions/download-artifact), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/github-script](https://github.com/actions/github-script) and [actions/checkout](https://github.com/actions/checkout). Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/github-script` from 6 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v6...v8) Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6d49122 commit cae99bc

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 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)