Skip to content

Commit 0c0bb73

Browse files
Merge branch 'main' into fix/save-files-artifacts-plugin-large-file-error
2 parents aa5d6a4 + 7557a92 commit 0c0bb73

File tree

297 files changed

+26578
-6471
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+26578
-6471
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "1.25.1"
3+
}

.github/release-please-config.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"last-release-sha": "9f7d5b3f1476234e552b783415527cc4bac55b39",
4+
"packages": {
5+
".": {
6+
"release-type": "python",
7+
"package-name": "google-adk",
8+
"include-component-in-tag": false,
9+
"skip-github-release": true,
10+
"changelog-path": "CHANGELOG.md",
11+
"changelog-sections": [
12+
{"type": "feat", "section": "Features"},
13+
{"type": "fix", "section": "Bug Fixes"},
14+
{"type": "perf", "section": "Performance Improvements"},
15+
{"type": "refactor", "section": "Code Refactoring"},
16+
{"type": "docs", "section": "Documentation"},
17+
{"type": "test", "section": "Tests", "hidden": true},
18+
{"type": "build", "section": "Build System", "hidden": true},
19+
{"type": "ci", "section": "CI/CD", "hidden": true},
20+
{"type": "style", "section": "Styles", "hidden": true},
21+
{"type": "chore", "section": "Miscellaneous Chores", "hidden": true}
22+
]
23+
}
24+
}
25+
}

.github/release-please.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/release-trigger.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/analyze-releases-for-adk-docs-updates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
python-version: '3.11'
2525

2626
- name: Load adk-bot SSH Private Key
27-
uses: webfactory/ssh-agent@v0.9.0
27+
uses: webfactory/ssh-agent@v0.9.1
2828
with:
2929
ssh-private-key: ${{ secrets.ADK_BOT_SSH_PRIVATE_KEY }}
3030

.github/workflows/isort.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Python
3434
uses: actions/setup-python@v6
3535
with:
36-
python-version: '3.x'
36+
python-version: '3.11'
3737

3838
- name: Install isort
3939
run: |

.github/workflows/mypy-new-errors.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
python-version: ['3.10', '3.11', '3.12', '3.13',]
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

2727
- name: Install uv
28-
uses: astral-sh/setup-uv@v5
28+
uses: astral-sh/setup-uv@v7
2929

3030
- name: Generate Baseline (Main)
3131
run: |

.github/workflows/mypy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
python-version: ['3.10', '3.11', '3.12', '3.13',]
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818

1919
- name: Install uv
20-
uses: astral-sh/setup-uv@v1
20+
uses: astral-sh/setup-uv@v7
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

.github/workflows/pyink.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Python
3434
uses: actions/setup-python@v6
3535
with:
36-
python-version: '3.x'
36+
python-version: '3.11'
3737

3838
- name: Install pyink
3939
run: |

.github/workflows/python-unit-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
python-version: ["3.10", "3.11", "3.12", "3.13"]
28+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2929

3030
steps:
3131
- name: Checkout code
@@ -37,13 +37,13 @@ jobs:
3737
python-version: ${{ matrix.python-version }}
3838

3939
- name: Install the latest version of uv
40-
uses: astral-sh/setup-uv@v6
40+
uses: astral-sh/setup-uv@v7
4141

4242
- name: Install dependencies
4343
run: |
4444
uv venv .venv
4545
source .venv/bin/activate
46-
uv sync --extra test --extra eval --extra a2a
46+
uv sync --extra test
4747
4848
- name: Run unit tests with pytest
4949
run: |

0 commit comments

Comments
 (0)