From c7ea8b29079d733594a8ac94748cbe2881053135 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 03:52:50 +0000 Subject: [PATCH 1/3] build(deps): bump getsentry/testing-ai-sdk-integrations Bumps [getsentry/testing-ai-sdk-integrations](https://github.com/getsentry/testing-ai-sdk-integrations) from dba21cbfb57482556338983d8c35e6b09b534667 to 5b57253605660c813c237839a42826d3d003ee0b. - [Commits](https://github.com/getsentry/testing-ai-sdk-integrations/compare/dba21cbfb57482556338983d8c35e6b09b534667...5b57253605660c813c237839a42826d3d003ee0b) --- updated-dependencies: - dependency-name: getsentry/testing-ai-sdk-integrations dependency-version: 5b57253605660c813c237839a42826d3d003ee0b dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/ai-integration-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ai-integration-test.yml b/.github/workflows/ai-integration-test.yml index bd1f1c6f85..5870d0f50d 100644 --- a/.github/workflows/ai-integration-test.yml +++ b/.github/workflows/ai-integration-test.yml @@ -34,7 +34,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Run Python SDK Tests - uses: getsentry/testing-ai-sdk-integrations@dba21cbfb57482556338983d8c35e6b09b534667 + uses: getsentry/testing-ai-sdk-integrations@5b57253605660c813c237839a42826d3d003ee0b env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: From 5a066b85a5a63639bd83424125fb8a96cf8be176 Mon Sep 17 00:00:00 2001 From: Erica Pisani Date: Tue, 24 Feb 2026 07:56:31 -0500 Subject: [PATCH 2/3] ci(ai-integration-test): Fix language value from 'py' to 'python' Update the language parameter in the AI integration test workflow to use the full name 'python' instead of the abbreviation 'py'. Co-Authored-By: Claude --- .github/workflows/ai-integration-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ai-integration-test.yml b/.github/workflows/ai-integration-test.yml index 5870d0f50d..bcb21e009f 100644 --- a/.github/workflows/ai-integration-test.yml +++ b/.github/workflows/ai-integration-test.yml @@ -38,7 +38,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - language: py + language: python sentry-python-path: ${{ github.workspace }} openai-api-key: ${{ secrets.OPENAI_API_KEY }} anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }} From 9a31afcb1d3f82da4c287f0c945677c95255404c Mon Sep 17 00:00:00 2001 From: Erica Pisani Date: Tue, 24 Feb 2026 08:20:51 -0500 Subject: [PATCH 3/3] ci(ai-integration-test): Fix parameter name from language to platform The action input was incorrectly named `language` when it should be `platform` to match the expected parameter of the testing action. Co-Authored-By: Claude --- .github/workflows/ai-integration-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ai-integration-test.yml b/.github/workflows/ai-integration-test.yml index bcb21e009f..006572a7ed 100644 --- a/.github/workflows/ai-integration-test.yml +++ b/.github/workflows/ai-integration-test.yml @@ -38,7 +38,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - language: python + platform: python sentry-python-path: ${{ github.workspace }} openai-api-key: ${{ secrets.OPENAI_API_KEY }} anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}