Skip to content

ci: Bump the github-core-actions group across 1 directory with 7 updates#234

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-core-actions-32042a70e1
Open

ci: Bump the github-core-actions group across 1 directory with 7 updates#234
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-core-actions-32042a70e1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Contributor

Bumps the github-core-actions group with 7 updates in the / directory:

Package From To
actions/checkout 6 7
actions/github-script 7 9
actions/cache 4 5
actions/upload-artifact 5 7
actions/download-artifact 4.1.8 8.0.1
actions/setup-python 5 6
actions/stale 10.1.0 10.3.0

Updates actions/checkout from 6 to 7

Release notes

Sourced from actions/checkout's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v6.0.3...v7.0.0

v6.0.3

What's Changed

New Contributors

Full Changelog: actions/checkout@v6...v6.0.3

v6.0.2

What's Changed

Full Changelog: actions/checkout@v6.0.1...v6.0.2

v6.0.1

What's Changed

Full Changelog: actions/checkout@v6...v6.0.1

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

Updates actions/github-script from 7 to 9

Release notes

Sourced from actions/github-script's releases.

v9.0.0

New features:

  • getOctokit factory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients with getOctokit for details and examples.
  • Orchestration ID in user-agent — The ACTIONS_ORCHESTRATION_ID environment variable is automatically appended to the user-agent string for request tracing.

Breaking changes:

  • require('@actions/github') no longer works in scripts. The upgrade to @actions/github v9 (ESM-only) means require('@actions/github') will fail at runtime. If you previously used patterns like const { getOctokit } = require('@actions/github') to create secondary clients, use the new injected getOctokit function instead — it's available directly in the script context with no imports needed.
  • getOctokit is now an injected function parameter. Scripts that declare const getOctokit = ... or let getOctokit = ... will get a SyntaxError because JavaScript does not allow const/let redeclaration of function parameters. Use the injected getOctokit directly, or use var getOctokit = ... if you need to redeclare it.
  • If your script accesses other @actions/github internals beyond the standard github/octokit client, you may need to update those references for v9 compatibility.

What's Changed

New Contributors

Full Changelog: actions/github-script@v8.0.0...v9.0.0

v8.0.0

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

New Contributors

Full Changelog: actions/github-script@v7.1.0...v8.0.0

v7.1.0

What's Changed

... (truncated)

Commits
  • 3a2844b Merge pull request #700 from actions/salmanmkc/expose-getoctokit + prepare re...
  • ca10bbd fix: use @​octokit/core/types import for v7 compatibility
  • 86e48e2 merge: incorporate main branch changes
  • c108472 chore: rebuild dist for v9 upgrade and getOctokit factory
  • afff112 Merge pull request #712 from actions/salmanmkc/deployment-false + fix user-ag...
  • ff8117e ci: fix user-agent test to handle orchestration ID
  • 81c6b78 ci: use deployment: false to suppress deployment noise from integration tests
  • 3953caf docs: update README examples from @​v8 to @​v9, add getOctokit docs and v9 brea...
  • c17d55b ci: add getOctokit integration test job
  • a047196 test: add getOctokit integration tests via callAsyncFunction
  • Additional commits viewable in compare view

Updates actions/cache from 4 to 5

Release notes

Sourced from actions/cache's releases.

v5.0.0

[!IMPORTANT] actions/cache@v5 runs on the Node.js 24 runtime and requires a minimum Actions Runner version of 2.327.1.

If you are using self-hosted runners, ensure they are updated before upgrading.


What's Changed

Full Changelog: actions/cache@v4.3.0...v5.0.0

v4.3.0

What's Changed

New Contributors

Full Changelog: actions/cache@v4...v4.3.0

v4.2.4

What's Changed

New Contributors

Full Changelog: actions/cache@v4...v4.2.4

v4.2.3

What's Changed

  • Update to use @​actions/cache 4.0.3 package & prepare for new release by @​salmanmkc in actions/cache#1577 (SAS tokens for cache entries are now masked in debug logs)

New Contributors

Full Changelog: actions/cache@v4.2.2...v4.2.3

... (truncated)

Changelog

Sourced from actions/cache's changelog.

Releases

How to prepare a release

[!NOTE]
Relevant for maintainers with write access only.

  1. Switch to a new branch from main.
  2. Run npm test to ensure all tests are passing.
  3. Update the version in https://github.com/actions/cache/blob/main/package.json.
  4. Run npm run build to update the compiled files.
  5. Update this https://github.com/actions/cache/blob/main/RELEASES.md with the new version and changes in the ## Changelog section.
  6. Run licensed cache to update the license report.
  7. Run licensed status and resolve any warnings by updating the https://github.com/actions/cache/blob/main/.licensed.yml file with the exceptions.
  8. Commit your changes and push your branch upstream.
  9. Open a pull request against main and get it reviewed and merged.
  10. Draft a new release https://github.com/actions/cache/releases use the same version number used in package.json
    1. Create a new tag with the version number.
    2. Auto generate release notes and update them to match the changes you made in RELEASES.md.
    3. Toggle the set as the latest release option.
    4. Publish the release.
  11. Navigate to https://github.com/actions/cache/actions/workflows/release-new-action-version.yml
    1. There should be a workflow run queued with the same version number.
    2. Approve the run to publish the new version and update the major tags for this action.

Changelog

5.0.4

  • Bump minimatch to v3.1.5 (fixes ReDoS via globstar patterns)
  • Bump undici to v6.24.1 (WebSocket decompression bomb protection, header validation fixes)
  • Bump fast-xml-parser to v5.5.6

5.0.3

5.0.2

  • Bump @actions/cache to v5.0.3 #1692

5.0.1

  • Update @azure/storage-blob to ^12.29.1 via @actions/cache@5.0.1 #1685

5.0.0

[!IMPORTANT] actions/cache@v5 runs on the Node.js 24 runtime and requires a minimum Actions Runner version of 2.327.1.

... (truncated)

Commits
  • 27d5ce7 Merge pull request #1747 from actions/yacaovsnc/update-dependency
  • f280785 licensed changes
  • 619aeb1 npm run build generated dist files
  • bcf16c2 Update ts-http-runtime to 0.3.5
  • 6682284 Merge pull request #1738 from actions/prepare-v5.0.4
  • e340396 Update RELEASES
  • 8a67110 Add licenses
  • 1865903 Update dependencies & patch security vulnerabilities
  • 5656298 Merge pull request #1722 from RyPeck/patch-1
  • 4e380d1 Fix cache key in examples.md for bun.lock
  • Additional commits viewable in compare view

Updates actions/upload-artifact from 5 to 7

Release notes

Sourced from actions/upload-artifact's releases.

v7.0.0

v7 What's new

Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

New Contributors

Full Changelog: actions/upload-artifact@v6...v7.0.0

v6.0.0

v6 - What's new

[!IMPORTANT] actions/upload-artifact@v6 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v5 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

Full Changelog: actions/upload-artifact@v5.0.0...v6.0.0

Commits
  • 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency
  • 634250c Include changes in typespec/ts-http-runtime 0.3.5
  • e454baa Readme: bump all the example versions to v7 (#796)
  • 74fad66 Update the readme with direct upload details (#795)
  • bbbca2d Support direct file uploads (#764)
  • 589182c Upgrade the module to ESM and bump dependencies (#762)
  • 47309c9 Merge pull request #754 from actions/Link-/add-proxy-integration-tests
  • 02a8460 Add proxy integration test
  • b7c566a Merge pull request #745 from actions/upload-artifact-v6-release
  • e516bc8 docs: correct description of Node.js 24 support in README
  • Additional commits viewable in compare view

Updates actions/download-artifact from 4.1.8 to 8.0.1

Release notes

Sourced from actions/download-artifact's releases.

v8.0.1

What's Changed

Full Changelog: actions/download-artifact@v8...v8.0.1

v8.0.0

v8 - What's new

[!IMPORTANT] actions/download-artifact@v8 has been migrated to an ESM module. This should be transparent to the caller but forks might need to make significant changes.

[!IMPORTANT] Hash mismatches will now error by default. Users can override this behavior with a setting change (see below).

Direct downloads

To support direct uploads in actions/upload-artifact, the action will no longer attempt to unzip all downloaded files. Instead, the action checks the Content-Type header ahead of unzipping and skips non-zipped files. Callers wishing to download a zipped file as-is can also set the new skip-decompress parameter to true.

Enforced checks (breaking)

A previous release introduced digest checks on the download. If a download hash didn't match the expected hash from the server, the action would log a warning. Callers can now configure the behavior on mismatch with the digest-mismatch parameter. To be secure by default, we are now defaulting the behavior to error which will fail the workflow run.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

Full Changelog: actions/download-artifact@v7...v8.0.0

v7.0.0

v7 - What's new

[!IMPORTANT] actions/download-artifact@v7 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v6 had preliminary support for Node 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

... (truncated)

Commits
  • 3e5f45b Add regression tests for CJK characters (#471)
  • e6d03f6 Add a regression test for artifact name + content-type mismatches (#472)
  • 70fc10c Merge pull request #461 from actions/danwkennedy/digest-mismatch-behavior
  • f258da9 Add change docs
  • ccc058e Fix linting issues
  • bd7976b Add a setting to specify what to do on hash mismatch and default it to error
  • ac21fcf Merge pull request #460 from actions/danwkennedy/download-no-unzip
  • 15999bf Add note about package bumps
  • 974686e Bump the version to v8 and add release notes
  • fbe48b1 Update test names to make it clearer what they do
  • Additional commits viewable in compare view

Updates actions/setup-python from 5 to 6

Release notes

Sourced from actions/setup-python's releases.

v6.0.0

What's Changed

Breaking Changes

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Enhancements:

Bug fixes:

Dependency updates:

New Contributors

Full Changelog: actions/setup-python@v5...v6.0.0

v5.6.0

What's Changed

Full Changelog: actions/setup-python@v5...v5.6.0

v5.5.0

What's Changed

Enhancements:

Bug fixes:

... (truncated)

Commits
  • a309ff8 Bump urllib3 from 2.6.0 to 2.6.3 in /tests/data (#1264)
  • bfe8cc5 Upgrade @​actions dependencies to Node 24 compatible versions (#1259)
  • 4f41a90 Bump urllib3 from 2.5.0 to 2.6.0 in /tests/data (#1253)
  • 83679a8 Bump @​types/node from 24.1.0 to 24.9.1 and update macos-13 to macos-15-intel ...
  • bfc4944 Bump prettier from 3.5.3 to 3.6.2 (#1234)
  • 97aeb3e Bump requests from 2.32.2 to 2.32.4 in /tests/data (#1130)
  • 443da59 Bump actions/publish-action from 0.3.0 to 0.4.0 & Documentation update for pi...
  • cfd55ca graalpy: add graalpy early-access and windows builds (#880)
  • bba65e5 Bump typescript from 5.4.2 to 5.9.3 and update docs/advanced-usage.md (#1094)
  • 18566f8 Improve wording and "fix example" (remove 3.13) on testing against pre-releas...
  • Additional commits viewable in compare view

Updates actions/stale from 10.1.0 to 10.3.0

Release notes

Sourced from actions/stale's releases.

v10.3.0

What's Changed

Bug Fix

Dependency Updates

New Contributors

Full Changelog: actions/stale@v10...v10.3.0

v10.2.0

What's Changed

Bug Fix

Dependency Updates

New Contributors

Full Changelog: actions/stale@v10...v10.2.0

v10.1.1

What's Changed

Bug Fix

Improvement

Dependency Upgrades

New Contributors

Full Changelog: actions/stale@v10...v10.1.1

Changelog

Sourced from actions/stale's changelog.

Changelog

Commits
  • eb5cf3a chore: upgrade dependencies and bump version to 10.3.0 (#1335)
  • db5d06a Enhancement: ignore stale labeling events (#1311)
  • b5d41d4 build(deps-dev): bump lodash from 4.17.21 to 4.17.23 (#1313)
  • dcd2b94 Fix punycode and url.parse Deprecation Warnings (#1312)
  • d6f8a33 build(deps-dev): bump js-yaml from 4.1.0 to 4.1.1 (#1304)
  • a21a081 Fix checking state cache (fix #1136), also switch to octokit methods (#1152)
  • 9971854 build(deps): bump actions/checkout from 4 to 6 (#1306)
  • 5611b9d build(deps): bump actions/publish-action from 0.3.0 to 0.4.0 (#1291)
  • fad0de8 Improves error handling when rate limiting is disabled on GHES. (#1300)
  • 39bea7d Add Missing Input Reading for only-issue-types (#1298)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and optionsDescription has been truncated

Bumps the github-core-actions group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `6` | `7` |
| [actions/github-script](https://github.com/actions/github-script) | `7` | `9` |
| [actions/cache](https://github.com/actions/cache) | `4` | `5` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5` | `7` |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.8` | `8.0.1` |
| [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` |
| [actions/stale](https://github.com/actions/stale) | `10.1.0` | `10.3.0` |



Updates `actions/checkout` from 6 to 7
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v6...v7)

Updates `actions/github-script` from 7 to 9
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v7...v9)

Updates `actions/cache` from 4 to 5
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4...v5)

Updates `actions/upload-artifact` from 5 to 7
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v5...v7)

Updates `actions/download-artifact` from 4.1.8 to 8.0.1
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4.1.8...v8.0.1)

Updates `actions/setup-python` from 5 to 6
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v5...v6)

Updates `actions/stale` from 10.1.0 to 10.3.0
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v10.1.0...v10.3.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-core-actions
- dependency-name: actions/github-script
  dependency-version: '9'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-core-actions
- dependency-name: actions/cache
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-core-actions
- dependency-name: actions/upload-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-core-actions
- dependency-name: actions/download-artifact
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-core-actions
- dependency-name: actions/setup-python
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-core-actions
- dependency-name: actions/stale
  dependency-version: 10.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-core-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@github-actions

Copy link
Copy Markdown
Contributor

⚠️ This PR requires manual review before merging:\n\nUpdate Type: version-update:semver-major\nDependencies: actions/checkout, actions/github-script, actions/cache, actions/upload-artifact, actions/download-artifact, actions/setup-python, actions/stale\n\nPlease review the changes and merge when ready.

@github-actions

Copy link
Copy Markdown
Contributor

🔴 Skipped Tests Report

Total Skipped: 94 | Tracked: 0 | Untracked: 94

📊 View Summary

Skipped Tests Summary

Total Skipped Tests: 94
With GitHub Issues: 0
Without GitHub Issues: 94 ⚠️

Top Files with Skipped Tests

File Count
tests/meta/validation/test_mermaid_validation.py 18
tests/integration/test_vertex_ai_google.py 10
tests/integration/test_vertex_ai_anthropic.py 8
tests/integration/security/test_network_mode_transparency.py 8
tests/integration/test_agentic_loop_integration.py 6
tests/integration/test_vertex_ai_auth_methods.py 5
tests/integration/test_database_connectivity_real.py 5
tests/integration/test_openfga_client.py 4
tests/integration/test_docker_image_assets.py 4
tests/e2e/test_full_user_journey.py 3

Skip Reasons

Reason Count
Function not implemented yet 13
VERTEX_PROJECT not set - requires Vertex AI access 11
No reason provided 8
Docker package not available 8
Requires valid ANTHROPIC_API_KEY - mocks don't fully isolate... 6
PostgreSQL not available on test port 5
Function not imported 5
Performance tests skipped in parallel mode due to memory ove... 3
Checkov not installed (pip install checkov) 3
Circuit breaker tests are timing-sensitive and don't run rel... 3
Requires VERTEX_PROJECT and NO GOOGLE_APPLICATION_CREDENTIAL... 2
Requires both VERTEX_PROJECT and GOOGLE_APPLICATION_CREDENTI... 2
Requires ANTHROPIC_API_KEY 2
Skipped inside Docker - Dockerfile not available in test ima... 2
Docker build tests skipped in parallel mode 2
⚠️ Action Items (94 tests need GitHub issues)

Action Items: Skipped Tests Without GitHub Issues

94 tests need GitHub issues created

For each test below, create a GitHub issue to track why it's skipped and when it should be enabled:

tests/builder/test_code_generator.py

  • test_generate_with_black_formatting_error_returns_unformatted_code (line 471)
    - Reason: Black not installed - cannot test black formatting error path
    - Action: Create issue and update skip decorator with issue number

tests/e2e/test_full_user_journey.py

  • test_01_concurrent_users (line 1202)
    - Reason: Performance tests skipped in parallel mode due to memory overhead
    - Action: Create issue and update skip decorator with issue number

  • test_02_large_conversation (line 1217)
    - Reason: Performance tests skipped in parallel mode due to memory overhead
    - Action: Create issue and update skip decorator with issue number

  • test_03_bulk_search (line 1232)
    - Reason: Performance tests skipped in parallel mode due to memory overhead
    - Action: Create issue and update skip decorator with issue number

tests/infrastructure/test_terraform_security.py

  • test_checkov_azure_secrets_compliance (line 389)
    - Reason: Checkov not installed (pip install checkov)
    - Action: Create issue and update skip decorator with issue number

  • test_checkov_aws_secrets_compliance (line 410)
    - Reason: Checkov not installed (pip install checkov)
    - Action: Create issue and update skip decorator with issue number

  • test_checkov_backend_setup_compliance (line 427)
    - Reason: Checkov not installed (pip install checkov)
    - Action: Create issue and update skip decorator with issue number

tests/integration/execution/test_docker_sandbox.py

  • test_docker_socket_not_exposed_in_container (line 765)
    - Reason: Requires Docker rootless mode (set DOCKER_ROOTLESS_TEST=1 to enable)
    - Action: Create issue and update skip decorator with issue number

tests/integration/security/test_api_key_indexed_lookup.py

  • test_validate_uses_indexed_search_not_enumeration (line 84)
    - Reason: API key validation tests skipped in parallel mode due to memory overhead with AsyncMock
    - Action: Create issue and update skip decorator with issue number

  • test_indexed_lookup_performance_with_large_user_base (line 179)
    - Reason: Performance tests skipped in parallel mode due to memory overhead (133GB VIRT, 42GB RES observed)
    - Action: Create issue and update skip decorator with issue number

tests/integration/security/test_network_mode_transparency.py

  • test_allowlist_mode_fails_closed_with_warning (line 63)
    - Reason: Docker package not available
    - Action: Create issue and update skip decorator with issue number

  • test_none_network_mode_works_correctly (line 89)
    - Reason: Docker package not available
    - Action: Create issue and update skip decorator with issue number

  • test_unrestricted_network_mode_enables_network (line 103)
    - Reason: Docker package not available
    - Action: Create issue and update skip decorator with issue number

  • test_docker_sandbox_documents_allowlist_limitation (line 169)
    - Reason: Docker package not available
    - Action: Create issue and update skip decorator with issue number

  • test_allowed_domains_ignored_when_network_disabled (line 211)
    - Reason: Docker package not available
    - Action: Create issue and update skip decorator with issue number

  • test_empty_allowed_domains_with_unrestricted_mode (line 231)
    - Reason: Docker package not available
    - Action: Create issue and update skip decorator with issue number

  • test_allowlist_will_require_allowed_domains (line 261)
    - Reason: Docker package not available
    - Action: Create issue and update skip decorator with issue number

  • test_allowlist_mode_preserves_allowed_domains_config (line 280)
    - Reason: Docker package not available
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_agent.py

  • test_real_llm_invocation (line 442)
    - Reason: Requires ANTHROPIC_API_KEY
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_agentic_loop_integration.py

  • test_basic_workflow_without_compaction_verification (line 120)
    - Reason: Requires valid ANTHROPIC_API_KEY - mocks don't fully isolate LLM calls
    - Action: Create issue and update skip decorator with issue number

  • test_workflow_with_compaction_enabled (line 148)
    - Reason: Requires valid ANTHROPIC_API_KEY - mocks don't fully isolate LLM calls
    - Action: Create issue and update skip decorator with issue number

  • test_workflow_with_verification_pass (line 176)
    - Reason: Requires valid ANTHROPIC_API_KEY - mocks don't fully isolate LLM calls
    - Action: Create issue and update skip decorator with issue number

  • test_workflow_with_verification_refinement (line 209)
    - Reason: Requires valid ANTHROPIC_API_KEY - mocks don't fully isolate LLM calls
    - Action: Create issue and update skip decorator with issue number

  • test_workflow_max_refinement_attempts (line 241)
    - Reason: Requires valid ANTHROPIC_API_KEY - mocks don't fully isolate LLM calls
    - Action: Create issue and update skip decorator with issue number

  • test_full_loop_with_all_features (line 312)
    - Reason: Requires valid ANTHROPIC_API_KEY - mocks don't fully isolate LLM calls
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_anthropic_enhancements_integration.py

  • test_agent_with_dynamic_context (line 279)
    - Reason: Requires full infrastructure (Qdrant, Redis, LLM) - set RUN_FULL_INTEGRATION_TESTS=1
    - Action: Create issue and update skip decorator with issue number

  • test_agent_with_verification_loop (line 316)
    - Reason: Requires full infrastructure - set RUN_FULL_INTEGRATION_TESTS=1 and ANTHROPIC_API_KEY
    - Action: Create issue and update skip decorator with issue number

  • test_mock_full_workflow (line 364)
    - Reason: Requires langchain-google-genai - set RUN_FULL_INTEGRATION_TESTS=1
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_context_manager_llm.py

  • test_full_extraction_workflow (line 515)
    - Reason: Requires ANTHROPIC_API_KEY
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_database_connectivity_real.py

  • test_check_database_connectivity_with_real_postgres (line 53)
    - Reason: PostgreSQL not available on test port
    - Action: Create issue and update skip decorator with issue number

  • test_create_connection_pool_with_real_postgres (line 78)
    - Reason: PostgreSQL not available on test port
    - Action: Create issue and update skip decorator with issue number

  • test_check_database_connectivity_with_invalid_credentials (line 123)
    - Reason: PostgreSQL not available on test port
    - Action: Create issue and update skip decorator with issue number

  • test_check_database_connectivity_with_nonexistent_database (line 144)
    - Reason: PostgreSQL not available on test port
    - Action: Create issue and update skip decorator with issue number

  • test_check_database_connectivity_timeout (line 165)
    - Reason: PostgreSQL not available on test port
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_distributed_checkpointing.py

  • test_create_redis_checkpointer (line 53)
    - Reason: Redis checkpointer not installed
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_docker_image_assets.py

  • test_dockerfile_excludes_deployments_directory (line 60)
    - Reason: Skipped inside Docker - Dockerfile not available in test image
    - Action: Create issue and update skip decorator with issue number

  • test_dockerfile_excludes_scripts_directory (line 110)
    - Reason: Skipped inside Docker - Dockerfile not available in test image
    - Action: Create issue and update skip decorator with issue number

  • test_docker_test_image_excludes_deployments_at_runtime (line 185)
    - Reason: Docker build tests skipped in parallel mode
    - Action: Create issue and update skip decorator with issue number

  • test_docker_test_image_excludes_scripts_at_runtime (line 255)
    - Reason: Docker build tests skipped in parallel mode
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_openfga_client.py

  • test_full_authorization_flow (line 453)
    - Reason: Requires running OpenFGA instance (set RUN_INTEGRATION_TESTS=1)
    - Action: Create issue and update skip decorator with issue number

  • test_circuit_breaker_fails_closed_for_critical_resources (line 530)
    - Reason: Circuit breaker tests are timing-sensitive and don't run reliably in pytest-xdist parallel mode
    - Action: Create issue and update skip decorator with issue number

  • test_circuit_breaker_fails_open_for_non_critical_resources (line 576)
    - Reason: Circuit breaker tests are timing-sensitive and don't run reliably in pytest-xdist parallel mode
    - Action: Create issue and update skip decorator with issue number

  • test_circuit_breaker_defaults_to_critical_true (line 622)
    - Reason: Circuit breaker tests are timing-sensitive and don't run reliably in pytest-xdist parallel mode
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_postgres_storage.py

  • test_concurrent_audit_log_writes (line 266)
    - Reason: Requires RUN_CONCURRENT_POOL_TESTS=true and real asyncpg pool (SimplePool doesn't support concurrent operations)
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_secrets_manager.py

  • test_full_secret_lifecycle (line 424)
    - Reason: Requires Infisical credentials (TEST_INFISICAL_CLIENT_ID, TEST_INFISICAL_CLIENT_SECRET, TEST_INFISICAL_PROJECT_ID)
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_vertex_ai_anthropic.py

  • test_claude_sonnet_4_5_via_vertex_ai (line 90)
    - Reason: No reason provided
    - Action: Create issue and update skip decorator with issue number

  • test_claude_haiku_4_5_via_vertex_ai (line 113)
    - Reason: No reason provided
    - Action: Create issue and update skip decorator with issue number

  • test_claude_opus_4_5_via_vertex_ai (line 136)
    - Reason: No reason provided
    - Action: Create issue and update skip decorator with issue number

  • test_claude_sonnet_4_5_reasoning (line 159)
    - Reason: No reason provided
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_claude_with_conversation (line 182)
    - Reason: No reason provided
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_uses_project_from_config (line 222)
    - Reason: No reason provided
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_supports_multiple_regions (line 240)
    - Reason: No reason provided
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_invalid_model_name (line 286)
    - Reason: No reason provided
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_vertex_ai_auth_methods.py

  • test_workload_identity_claude (line 48)
    - Reason: Requires VERTEX_PROJECT and NO GOOGLE_APPLICATION_CREDENTIALS (Workload Identity)
    - Action: Create issue and update skip decorator with issue number

  • test_workload_identity_gemini (line 71)
    - Reason: Requires VERTEX_PROJECT and NO GOOGLE_APPLICATION_CREDENTIALS (Workload Identity)
    - Action: Create issue and update skip decorator with issue number

  • test_service_account_key_claude (line 102)
    - Reason: Requires both VERTEX_PROJECT and GOOGLE_APPLICATION_CREDENTIALS
    - Action: Create issue and update skip decorator with issue number

  • test_service_account_key_gemini (line 125)
    - Reason: Requires both VERTEX_PROJECT and GOOGLE_APPLICATION_CREDENTIALS
    - Action: Create issue and update skip decorator with issue number

  • test_auto_detect_auth_method (line 156)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

tests/integration/test_vertex_ai_google.py

  • test_gemini_3_pro_via_vertex_ai_explicit_prefix (line 41)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

  • test_gemini_3_pro_via_vertex_ai_implicit_routing (line 64)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

  • test_gemini_2_5_flash_via_vertex_ai (line 87)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

  • test_gemini_2_5_flash_via_vertex_ai_implicit (line 110)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_gemini_with_conversation (line 133)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_gemini_uses_project_from_config (line 171)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_gemini_supports_multiple_regions (line 191)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_prefix_vs_no_prefix_equivalence (line 212)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_gemini_invalid_model_name (line 269)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

  • test_vertex_ai_gemini_empty_message (line 289)
    - Reason: VERTEX_PROJECT not set - requires Vertex AI access
    - Action: Create issue and update skip decorator with issue number

tests/meta/test_docker_environment.py

  • test_docker_working_directory_is_app (line 226)
    - Reason: Only in Docker test environment
    - Action: Create issue and update skip decorator with issue number

tests/meta/validation/test_mermaid_validation.py

  • test_sequence_diagram_with_classdef_is_invalid (line 51)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_sequence_diagram_with_class_assignment_is_invalid (line 66)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_sequence_diagram_with_both_classdef_and_class_is_invalid (line 84)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_sequence_diagram_without_classdef_is_valid (line 102)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_flowchart_with_classdef_is_valid (line 118)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_non_sequence_diagram_skips_validation (line 131)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_mismatched_subgraph_end_is_invalid (line 153)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_matched_subgraph_end_is_valid (line 170)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_nested_subgraph_is_valid (line 186)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_simple_flowchart_without_subgraph_is_valid (line 202)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_sequence_diagram_skips_subgraph_validation (line 214)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_detects_sequence_diagram (line 235)
    - Reason: Function not imported
    - Action: Create issue and update skip decorator with issue number

  • test_detects_sequence_diagram_with_init (line 245)
    - Reason: Function not imported
    - Action: Create issue and update skip decorator with issue number

  • test_flowchart_is_not_sequence_diagram (line 256)
    - Reason: Function not imported
    - Action: Create issue and update skip decorator with issue number

  • test_detects_flowchart_diagram (line 265)
    - Reason: Function not imported
    - Action: Create issue and update skip decorator with issue number

  • test_detects_graph_as_flowchart (line 274)
    - Reason: Function not imported
    - Action: Create issue and update skip decorator with issue number

  • test_terraform_aws_irsa_diagram_pattern (line 292)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

  • test_keycloak_sso_diagram_pattern (line 325)
    - Reason: Function not implemented yet
    - Action: Create issue and update skip decorator with issue number

tests/regression/test_async_dependency_override_xdist.py

  • test_demonstrate_async_override_bug_explicitly (line 230)
    - Reason: Intentionally skipped - this test demonstrates the bug and is expected to fail
    - Action: Create issue and update skip decorator with issue number

tests/regression/test_gdpr_singleton_parallel_isolation.py

  • test_parallel_execution_creates_independent_storage_instances (line 190)
    - Reason: This test only meaningful in parallel execution mode
    - Action: Create issue and update skip decorator with issue number

tests/unit/auth/test_api_key_manager.py

  • test_validate_api_key_beyond_first_page (line 542)
    - Reason: Pagination tests skipped in parallel mode - creates 150 mock users causing memory overhead
    - Action: Create issue and update skip decorator with issue number

  • test_validate_api_key_not_found_after_pagination (line 594)
    - Reason: Pagination tests skipped in parallel mode - creates 150 mock users causing memory overhead
    - Action: Create issue and update skip decorator with issue number

  • test_validate_api_key_pagination_stops_on_match (line 630)
    - Reason: Pagination tests skipped in parallel mode - creates 250 mock users causing memory overhead
    - Action: Create issue and update skip decorator with issue number

tests/unit/execution/test_security_practices.py

  • test_kubernetes_sandbox_does_not_use_insecure_md5 (line 46)
    - Reason: kubernetes library not installed (optional dependency for kubernetes sandbox)
    - Action: Create issue and update skip decorator with issue number

tests/unit/mcp/test_mcp_server_settings_injection.py

  • test_settings_injection_does_not_affect_global_settings (line 131)
    - Reason: Settings isolation test may interfere with parallel execution
    - Action: Create issue and update skip decorator with issue number

Target: Reduce untracked skipped tests to <20 (currently 94)

@github-actions

Copy link
Copy Markdown
Contributor

Terraform Validation Summary

Format Check: success
Development Environment: success
Preview Environment: success
Production Environment: success
All Modules: success


✅ All Terraform validations passed!

Your Terraform configuration is properly formatted and validated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants