{"id":30919,"name":"anthropics/claude-code-action","ecosystem":"actions","repository_url":"https://github.com/anthropics/claude-code-action","issues_count":844,"created_at":"2025-06-07T06:53:54.760Z","updated_at":"2025-06-07T06:53:54.760Z","purl":"pkg:githubactions/anthropics/claude-code-action","metadata":{"id":11772354,"name":"anthropics/claude-code-action","ecosystem":"actions","description":"General-purpose Claude agent for GitHub PRs and issues. Can answer questions and implement code changes.","homepage":null,"licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/anthropics/claude-code-action","keywords_array":[],"namespace":"anthropics","versions_count":6,"first_release_published_at":"2025-05-19T15:32:32.000Z","latest_release_published_at":"2025-05-22T14:26:42.000Z","latest_release_number":"v0.0.5","last_synced_at":"2025-06-07T21:21:48.151Z","created_at":"2025-06-07T21:21:46.721Z","updated_at":"2025-06-08T21:07:47.105Z","registry_url":"https://github.com/anthropics/claude-code-action","install_command":null,"documentation_url":null,"metadata":{"name":"Claude Code Action Official","description":"General-purpose Claude agent for GitHub PRs and issues. Can answer questions and implement code changes.","branding":{"icon":"at-sign","color":"orange"},"inputs":{"trigger_phrase":{"description":"The trigger phrase to look for in comments or issue body","required":false,"default":"@claude"},"assignee_trigger":{"description":"The assignee username that triggers the action (e.g. @claude)","required":false},"model":{"description":"Model to use (provider-specific format required for Bedrock/Vertex)","required":false},"anthropic_model":{"description":"DEPRECATED: Use 'model' instead. Model to use (provider-specific format required for Bedrock/Vertex)","required":false,"default":"claude-3-7-sonnet-20250219"},"allowed_tools":{"description":"Additional tools for Claude to use (the base GitHub tools will always be included)","required":false,"default":""},"disallowed_tools":{"description":"Tools that Claude should never use","required":false,"default":""},"custom_instructions":{"description":"Additional custom instructions to include in the prompt for Claude","required":false,"default":""},"direct_prompt":{"description":"Direct instruction for Claude (bypasses normal trigger detection)","required":false,"default":""},"anthropic_api_key":{"description":"Anthropic API key (required for direct API, not needed for Bedrock/Vertex)","required":false},"github_token":{"description":"GitHub token with repo and pull request permissions (optional if using GitHub App)","required":false},"use_bedrock":{"description":"Use Amazon Bedrock with OIDC authentication instead of direct Anthropic API","required":false,"default":"false"},"use_vertex":{"description":"Use Google Vertex AI with OIDC authentication instead of direct Anthropic API","required":false,"default":"false"},"timeout_minutes":{"description":"Timeout in minutes for execution","required":false,"default":"30"}},"outputs":{"execution_file":{"description":"Path to the Claude Code execution output file","value":"${{ steps.claude-code.outputs.execution_file }}"}},"runs":{"using":"composite","steps":[{"name":"Install Bun","uses":"oven-sh/setup-bun@v2","with":{"bun-version":"1.2.11"}},{"name":"Install Dependencies","shell":"bash","run":"cd ${{ github.action_path }}\nbun install\n"},{"name":"Prepare action","id":"prepare","shell":"bash","run":"bun run ${{ github.action_path }}/src/entrypoints/prepare.ts\n","env":{"TRIGGER_PHRASE":"${{ inputs.trigger_phrase }}","ASSIGNEE_TRIGGER":"${{ inputs.assignee_trigger }}","ALLOWED_TOOLS":"${{ inputs.allowed_tools }}","CUSTOM_INSTRUCTIONS":"${{ inputs.custom_instructions }}","DIRECT_PROMPT":"${{ inputs.direct_prompt }}","OVERRIDE_GITHUB_TOKEN":"${{ inputs.github_token }}","GITHUB_RUN_ID":"${{ github.run_id }}"}},{"name":"Run Claude Code","id":"claude-code","if":"steps.prepare.outputs.contains_trigger == 'true'","uses":"anthropics/claude-code-base-action@beta","with":{"prompt_file":"/tmp/claude-prompts/claude-prompt.txt","allowed_tools":"${{ env.ALLOWED_TOOLS }}","disallowed_tools":"${{ env.DISALLOWED_TOOLS }}","timeout_minutes":"${{ inputs.timeout_minutes }}","anthropic_model":"${{ inputs.model || inputs.anthropic_model }}","mcp_config":"${{ steps.prepare.outputs.mcp_config }}","use_bedrock":"${{ inputs.use_bedrock }}","use_vertex":"${{ inputs.use_vertex }}","anthropic_api_key":"${{ inputs.anthropic_api_key }}"},"env":{"ANTHROPIC_MODEL":"${{ inputs.model || inputs.anthropic_model }}","GITHUB_TOKEN":"${{ steps.prepare.outputs.GITHUB_TOKEN }}","AWS_REGION":"${{ env.AWS_REGION }}","AWS_ACCESS_KEY_ID":"${{ env.AWS_ACCESS_KEY_ID }}","AWS_SECRET_ACCESS_KEY":"${{ env.AWS_SECRET_ACCESS_KEY }}","AWS_SESSION_TOKEN":"${{ env.AWS_SESSION_TOKEN }}","ANTHROPIC_BEDROCK_BASE_URL":"${{ env.ANTHROPIC_BEDROCK_BASE_URL }}","ANTHROPIC_VERTEX_PROJECT_ID":"${{ env.ANTHROPIC_VERTEX_PROJECT_ID }}","CLOUD_ML_REGION":"${{ env.CLOUD_ML_REGION }}","GOOGLE_APPLICATION_CREDENTIALS":"${{ env.GOOGLE_APPLICATION_CREDENTIALS }}","ANTHROPIC_VERTEX_BASE_URL":"${{ env.ANTHROPIC_VERTEX_BASE_URL }}","VERTEX_REGION_CLAUDE_3_5_HAIKU":"${{ env.VERTEX_REGION_CLAUDE_3_5_HAIKU }}","VERTEX_REGION_CLAUDE_3_5_SONNET":"${{ env.VERTEX_REGION_CLAUDE_3_5_SONNET }}","VERTEX_REGION_CLAUDE_3_7_SONNET":"${{ env.VERTEX_REGION_CLAUDE_3_7_SONNET }}"}},{"name":"Update comment with job link","if":"steps.prepare.outputs.contains_trigger == 'true' \u0026\u0026 steps.prepare.outputs.claude_comment_id \u0026\u0026 always()","shell":"bash","run":"bun run ${{ github.action_path }}/src/entrypoints/update-comment-link.ts\n","env":{"REPOSITORY":"${{ github.repository }}","PR_NUMBER":"${{ github.event.issue.number || github.event.pull_request.number }}","CLAUDE_COMMENT_ID":"${{ steps.prepare.outputs.claude_comment_id }}","GITHUB_RUN_ID":"${{ github.run_id }}","GITHUB_TOKEN":"${{ steps.prepare.outputs.GITHUB_TOKEN }}","GITHUB_EVENT_NAME":"${{ github.event_name }}","TRIGGER_COMMENT_ID":"${{ github.event.comment.id }}","CLAUDE_BRANCH":"${{ steps.prepare.outputs.CLAUDE_BRANCH }}","IS_PR":"${{ github.event.issue.pull_request != null || github.event_name == 'pull_request_review_comment' }}","DEFAULT_BRANCH":"${{ steps.prepare.outputs.DEFAULT_BRANCH }}","CLAUDE_SUCCESS":"${{ steps.claude-code.outputs.conclusion == 'success' }}","OUTPUT_FILE":"${{ steps.claude-code.outputs.execution_file || '' }}","TRIGGER_USERNAME":"${{ github.event.comment.user.login || github.event.issue.user.login || github.event.pull_request.user.login || github.event.sender.login || github.triggering_actor || github.actor || '' }}"}},{"name":"Display Claude Code Report","if":"steps.prepare.outputs.contains_trigger == 'true' \u0026\u0026 steps.claude-code.outputs.execution_file != ''","shell":"bash","run":"echo \"## Claude Code Report\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho '```json' \u003e\u003e $GITHUB_STEP_SUMMARY\ncat \"${{ steps.claude-code.outputs.execution_file }}\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho '```' \u003e\u003e $GITHUB_STEP_SUMMARY\n"},{"name":"Revoke app token","if":"always() \u0026\u0026 inputs.github_token == ''","shell":"bash","run":"curl -L \\\n  -X DELETE \\\n  -H \"Accept: application/vnd.github+json\" \\\n  -H \"Authorization: Bearer ${{ steps.prepare.outputs.GITHUB_TOKEN }}\" \\\n  -H \"X-GitHub-Api-Version: 2022-11-28\" \\\n  ${GITHUB_API_URL:-https://api.github.com}/installation/token\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":294261737,"uuid":"986421638","full_name":"anthropics/claude-code-action","owner":"anthropics","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-03T20:40:53.000Z","size":165,"stargazers_count":774,"open_issues_count":39,"forks_count":452,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-06-03T21:42:14.491Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anthropics.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-19T15:26:50.000Z","updated_at":"2025-06-03T20:40:55.000Z","dependencies_parsed_at":"2025-05-19T17:02:09.639Z","dependency_job_id":null,"html_url":"https://github.com/anthropics/claude-code-action","commit_stats":null,"previous_names":["anthropics/claude-code-action"],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthropics%2Fclaude-code-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthropics%2Fclaude-code-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthropics%2Fclaude-code-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthropics%2Fclaude-code-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anthropics","download_url":"https://codeload.github.com/anthropics/claude-code-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthropics%2Fclaude-code-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":258777290,"owners_count":22756075,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"repo_metadata_updated_at":"2025-06-08T21:07:47.104Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":34.34343434343434,"dependent_packages_count":0.0,"stargazers_count":null,"forks_count":null,"docker_downloads_count":null,"average":17.17171717171717},"purl":"pkg:githubactions/anthropics/claude-code-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/anthropics/claude-code-action","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/anthropics/claude-code-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/anthropics/claude-code-action/dependencies","status":null,"funding_links":[],"critical":null,"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/anthropics%2Fclaude-code-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/anthropics%2Fclaude-code-action/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/anthropics%2Fclaude-code-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/anthropics%2Fclaude-code-action/related_packages","maintainers":[],"registry":{"name":"github actions","url":"https://github.com/marketplace/actions/","ecosystem":"actions","default":true,"packages_count":31887,"maintainers_count":0,"namespaces_count":20080,"keywords_count":6805,"github":"actions","metadata":{"funded_packages_count":3013},"icon_url":"https://github.com/actions.png","created_at":"2023-01-03T17:16:39.185Z","updated_at":"2025-06-09T06:38:42.709Z","packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages","maintainers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/maintainers","namespaces_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/namespaces"}},"unique_repositories_count":276,"unique_repositories_count_past_30_days":65,"recent_issues":[{"uuid":"4670162667","node_id":"PR_kwDOSE1rC87mzFHO","number":50,"state":"open","title":"build(deps): bump anthropics/claude-code-action from 1.0.92 to 1.0.142","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-16T01:13:52.000Z","updated_at":"2026-06-16T01:13:53.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.92","new_version":"1.0.142","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.92 to 1.0.142.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.142\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.141\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003e\u003ccode\u003e11ba604\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.170 and Agent SDK to 0.3.170\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/593d7a5c4e0073569f74772c2b7b64c30ec14707\"\u003e\u003ccode\u003e593d7a5\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.169 and Agent SDK to 0.3.169\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/657fb7c9c986158a19624b357bcbc8c6deb83598...11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.92\u0026new-version=1.0.142)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/actions-marketplace-validations/ncaq_kyosei-action/pull/50","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/actions-marketplace-validations%2Fncaq_kyosei-action/issues/50","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/50/packages"},{"uuid":"4667710080","node_id":"PR_kwDOR9Os887mq9CR","number":45,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.107 to 1.0.148","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-15T18:15:48.000Z","updated_at":"2026-06-15T18:15:49.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.107","new_version":"1.0.148","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.107 to 1.0.148.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.148\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.147\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd pr-stamp-sweep review workflow by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1409\"\u003eanthropics/claude-code-action#1409\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.146\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: add unit tests for parseGitHubContext and context type guards by \u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs(faq): correct rebase FAQ to match actual behavior by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: fall back to inherited env for auth when inputs are empty by \u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: break SDK iterator after result message to prevent hang in pull_request runs by \u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin setup-bun binary for post-steps by \u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: clear stale claude-prompts dir before each write by \u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eInclude labels in formatContext() output for issues and PRs by \u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(sanitizer): match attribute quotes by type to avoid mangling content by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1371\"\u003eanthropics/claude-code-action#1371\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: fix execution file parsing example by \u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(image-downloader): detect image type from magic bytes, not URL extension by \u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.145\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.144\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d5726de019ec4498aa667642bc3a80fca83aa102\"\u003e\u003ccode\u003ed5726de\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/56fa348258fbcb1aeb8d3954d5799b5991098481\"\u003e\u003ccode\u003e56fa348\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/82d95d45afccaedf8edb2a72d9f31f8f83f0e3c0\"\u003e\u003ccode\u003e82d95d4\u003c/code\u003e\u003c/a\u003e Add pr-stamp-sweep review workflow (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0cb4f3e5e764d2e00407d29b6bf0aa9df0976d88\"\u003e\u003ccode\u003e0cb4f3e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/8551f4b0aa500ecf8d089328f7e4855ec4f88b97\"\u003e\u003ccode\u003e8551f4b\u003c/code\u003e\u003c/a\u003e fix(image-downloader): detect image type from magic bytes (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1396\"\u003e#1396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eba921ff6fe46ae228080985856114843726aa23\"\u003e\u003ccode\u003eeba921f\u003c/code\u003e\u003c/a\u003e docs: fix execution file parsing example (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1297\"\u003e#1297\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36617bd48be5f24c2d18eea12367a58fefded956\"\u003e\u003ccode\u003e36617bd\u003c/code\u003e\u003c/a\u003e fix(sanitizer): match attribute quotes by type to avoid mangling content (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1371\"\u003e#1371\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/24b915648e7331d5599ee6a656207a7d070b35c5\"\u003e\u003ccode\u003e24b9156\u003c/code\u003e\u003c/a\u003e Include labels in formatContext() output for issues and PRs (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9441a7fe224ee09e3609eae6d1bb862443f72fad\"\u003e\u003ccode\u003e9441a7f\u003c/code\u003e\u003c/a\u003e fix: clear stale claude-prompts dir before each write (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1288\"\u003e#1288\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b37125513918a14401569b74d3cc359c7c360dc1\"\u003e\u003ccode\u003eb371255\u003c/code\u003e\u003c/a\u003e pin setup-bun path for post steps (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1365\"\u003e#1365\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/567fe954a4527e81f132d87d1bdbcc94f7737434...d5726de019ec4498aa667642bc3a80fca83aa102\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.107\u0026new-version=1.0.148)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/FournineCS/turul-app/pull/45","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/FournineCS%2Fturul-app/issues/45","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/45/packages"},{"uuid":"4662503713","node_id":"PR_kwDOLAxHPM7mZtEY","number":174,"state":"closed","title":"chore(deps):(deps): bump anthropics/claude-code-action from 1.0.140 to 1.0.148","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-15T06:10:05.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-15T06:09:30.000Z","updated_at":"2026-06-15T06:10:06.000Z","time_to_close":35,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps):(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.140","new_version":"1.0.148","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.140 to 1.0.148.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.148\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.147\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd pr-stamp-sweep review workflow by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1409\"\u003eanthropics/claude-code-action#1409\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.146\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: add unit tests for parseGitHubContext and context type guards by \u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs(faq): correct rebase FAQ to match actual behavior by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: fall back to inherited env for auth when inputs are empty by \u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: break SDK iterator after result message to prevent hang in pull_request runs by \u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin setup-bun binary for post-steps by \u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: clear stale claude-prompts dir before each write by \u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eInclude labels in formatContext() output for issues and PRs by \u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(sanitizer): match attribute quotes by type to avoid mangling content by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1371\"\u003eanthropics/claude-code-action#1371\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: fix execution file parsing example by \u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(image-downloader): detect image type from magic bytes, not URL extension by \u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.145\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.144\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d5726de019ec4498aa667642bc3a80fca83aa102\"\u003e\u003ccode\u003ed5726de\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/56fa348258fbcb1aeb8d3954d5799b5991098481\"\u003e\u003ccode\u003e56fa348\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/82d95d45afccaedf8edb2a72d9f31f8f83f0e3c0\"\u003e\u003ccode\u003e82d95d4\u003c/code\u003e\u003c/a\u003e Add pr-stamp-sweep review workflow (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0cb4f3e5e764d2e00407d29b6bf0aa9df0976d88\"\u003e\u003ccode\u003e0cb4f3e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/8551f4b0aa500ecf8d089328f7e4855ec4f88b97\"\u003e\u003ccode\u003e8551f4b\u003c/code\u003e\u003c/a\u003e fix(image-downloader): detect image type from magic bytes (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1396\"\u003e#1396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eba921ff6fe46ae228080985856114843726aa23\"\u003e\u003ccode\u003eeba921f\u003c/code\u003e\u003c/a\u003e docs: fix execution file parsing example (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1297\"\u003e#1297\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36617bd48be5f24c2d18eea12367a58fefded956\"\u003e\u003ccode\u003e36617bd\u003c/code\u003e\u003c/a\u003e fix(sanitizer): match attribute quotes by type to avoid mangling content (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1371\"\u003e#1371\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/24b915648e7331d5599ee6a656207a7d070b35c5\"\u003e\u003ccode\u003e24b9156\u003c/code\u003e\u003c/a\u003e Include labels in formatContext() output for issues and PRs (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9441a7fe224ee09e3609eae6d1bb862443f72fad\"\u003e\u003ccode\u003e9441a7f\u003c/code\u003e\u003c/a\u003e fix: clear stale claude-prompts dir before each write (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1288\"\u003e#1288\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b37125513918a14401569b74d3cc359c7c360dc1\"\u003e\u003ccode\u003eb371255\u003c/code\u003e\u003c/a\u003e pin setup-bun path for post steps (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1365\"\u003e#1365\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1...d5726de019ec4498aa667642bc3a80fca83aa102\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.140\u0026new-version=1.0.148)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/navigaite/.github/pull/174","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/navigaite%2F.github/issues/174","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/174/packages"},{"uuid":"4661388353","node_id":"PR_kwDOBS_GQM7mWIt2","number":366,"state":"open","title":"ci(deps): bump anthropics/claude-code-action from 1.0.140 to 1.0.148","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-15T01:34:53.000Z","updated_at":"2026-06-15T01:34:53.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.140","new_version":"1.0.148","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.140 to 1.0.148.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.148\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.147\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd pr-stamp-sweep review workflow by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1409\"\u003eanthropics/claude-code-action#1409\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.146\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: add unit tests for parseGitHubContext and context type guards by \u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs(faq): correct rebase FAQ to match actual behavior by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: fall back to inherited env for auth when inputs are empty by \u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: break SDK iterator after result message to prevent hang in pull_request runs by \u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin setup-bun binary for post-steps by \u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: clear stale claude-prompts dir before each write by \u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eInclude labels in formatContext() output for issues and PRs by \u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(sanitizer): match attribute quotes by type to avoid mangling content by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1371\"\u003eanthropics/claude-code-action#1371\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: fix execution file parsing example by \u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(image-downloader): detect image type from magic bytes, not URL extension by \u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.145\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.144\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d5726de019ec4498aa667642bc3a80fca83aa102\"\u003e\u003ccode\u003ed5726de\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/56fa348258fbcb1aeb8d3954d5799b5991098481\"\u003e\u003ccode\u003e56fa348\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/82d95d45afccaedf8edb2a72d9f31f8f83f0e3c0\"\u003e\u003ccode\u003e82d95d4\u003c/code\u003e\u003c/a\u003e Add pr-stamp-sweep review workflow (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0cb4f3e5e764d2e00407d29b6bf0aa9df0976d88\"\u003e\u003ccode\u003e0cb4f3e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/8551f4b0aa500ecf8d089328f7e4855ec4f88b97\"\u003e\u003ccode\u003e8551f4b\u003c/code\u003e\u003c/a\u003e fix(image-downloader): detect image type from magic bytes (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1396\"\u003e#1396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eba921ff6fe46ae228080985856114843726aa23\"\u003e\u003ccode\u003eeba921f\u003c/code\u003e\u003c/a\u003e docs: fix execution file parsing example (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1297\"\u003e#1297\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36617bd48be5f24c2d18eea12367a58fefded956\"\u003e\u003ccode\u003e36617bd\u003c/code\u003e\u003c/a\u003e fix(sanitizer): match attribute quotes by type to avoid mangling content (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1371\"\u003e#1371\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/24b915648e7331d5599ee6a656207a7d070b35c5\"\u003e\u003ccode\u003e24b9156\u003c/code\u003e\u003c/a\u003e Include labels in formatContext() output for issues and PRs (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9441a7fe224ee09e3609eae6d1bb862443f72fad\"\u003e\u003ccode\u003e9441a7f\u003c/code\u003e\u003c/a\u003e fix: clear stale claude-prompts dir before each write (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1288\"\u003e#1288\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b37125513918a14401569b74d3cc359c7c360dc1\"\u003e\u003ccode\u003eb371255\u003c/code\u003e\u003c/a\u003e pin setup-bun path for post steps (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1365\"\u003e#1365\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1...d5726de019ec4498aa667642bc3a80fca83aa102\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.140\u0026new-version=1.0.148)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/iplweb/bpp/pull/366","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/iplweb%2Fbpp/issues/366","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/366/packages"},{"uuid":"4661218417","node_id":"PR_kwDOHK55OM7mVn2k","number":8114,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.148","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-15T00:43:57.000Z","updated_at":"2026-06-15T00:59:50.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.148","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.148.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.148\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.147\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd pr-stamp-sweep review workflow by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1409\"\u003eanthropics/claude-code-action#1409\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.146\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: add unit tests for parseGitHubContext and context type guards by \u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs(faq): correct rebase FAQ to match actual behavior by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: fall back to inherited env for auth when inputs are empty by \u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: break SDK iterator after result message to prevent hang in pull_request runs by \u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin setup-bun binary for post-steps by \u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: clear stale claude-prompts dir before each write by \u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eInclude labels in formatContext() output for issues and PRs by \u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(sanitizer): match attribute quotes by type to avoid mangling content by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1371\"\u003eanthropics/claude-code-action#1371\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: fix execution file parsing example by \u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(image-downloader): detect image type from magic bytes, not URL extension by \u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.145\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.144\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d5726de019ec4498aa667642bc3a80fca83aa102\"\u003e\u003ccode\u003ed5726de\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/56fa348258fbcb1aeb8d3954d5799b5991098481\"\u003e\u003ccode\u003e56fa348\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/82d95d45afccaedf8edb2a72d9f31f8f83f0e3c0\"\u003e\u003ccode\u003e82d95d4\u003c/code\u003e\u003c/a\u003e Add pr-stamp-sweep review workflow (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0cb4f3e5e764d2e00407d29b6bf0aa9df0976d88\"\u003e\u003ccode\u003e0cb4f3e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/8551f4b0aa500ecf8d089328f7e4855ec4f88b97\"\u003e\u003ccode\u003e8551f4b\u003c/code\u003e\u003c/a\u003e fix(image-downloader): detect image type from magic bytes (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1396\"\u003e#1396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eba921ff6fe46ae228080985856114843726aa23\"\u003e\u003ccode\u003eeba921f\u003c/code\u003e\u003c/a\u003e docs: fix execution file parsing example (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1297\"\u003e#1297\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36617bd48be5f24c2d18eea12367a58fefded956\"\u003e\u003ccode\u003e36617bd\u003c/code\u003e\u003c/a\u003e fix(sanitizer): match attribute quotes by type to avoid mangling content (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1371\"\u003e#1371\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/24b915648e7331d5599ee6a656207a7d070b35c5\"\u003e\u003ccode\u003e24b9156\u003c/code\u003e\u003c/a\u003e Include labels in formatContext() output for issues and PRs (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9441a7fe224ee09e3609eae6d1bb862443f72fad\"\u003e\u003ccode\u003e9441a7f\u003c/code\u003e\u003c/a\u003e fix: clear stale claude-prompts dir before each write (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1288\"\u003e#1288\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b37125513918a14401569b74d3cc359c7c360dc1\"\u003e\u003ccode\u003eb371255\u003c/code\u003e\u003c/a\u003e pin setup-bun path for post steps (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1365\"\u003e#1365\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...d5726de019ec4498aa667642bc3a80fca83aa102\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.148)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/safe-global/safe-wallet-monorepo/pull/8114","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/safe-global%2Fsafe-wallet-monorepo/issues/8114","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/8114/packages"},{"uuid":"4635370555","node_id":"PR_kwDON2yr3c7lD6C4","number":4505,"state":"closed","title":"chore(deps): bump anthropics/claude-code-action from 1.0.119 to 1.0.143","user":"dependabot[bot]","labels":["dependencies","github-actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-10T22:35:39.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-10T22:10:14.000Z","updated_at":"2026-06-10T22:35:44.000Z","time_to_close":1525,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.119","new_version":"1.0.143","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.119 to 1.0.143.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.142\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.141\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eee73e2ae5399c561de4ff038aa7b36a7aa991a7\"\u003e\u003ccode\u003eeee73e2\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.172 and Agent SDK to 0.3.172\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/232c9a15f49822c165d462e7f0a3aa9287ed2a60\"\u003e\u003ccode\u003e232c9a1\u003c/code\u003e\u003c/a\u003e Drop --tsconfig-override from Bun invocations to avoid runtime crash (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1315\"\u003e#1315\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003e\u003ccode\u003e11ba604\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.170 and Agent SDK to 0.3.170\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/593d7a5c4e0073569f74772c2b7b64c30ec14707\"\u003e\u003ccode\u003e593d7a5\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.169 and Agent SDK to 0.3.169\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/476e359e6203e73dad705c8b322e333fabbd7416...eee73e2ae5399c561de4ff038aa7b36a7aa991a7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.119\u0026new-version=1.0.143)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/LearningCircuit/local-deep-research/pull/4505","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/LearningCircuit%2Flocal-deep-research/issues/4505","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4505/packages"},{"uuid":"4627342361","node_id":"PR_kwDOR-VHWc7kpkqN","number":55,"state":"open","title":"chore(deps): bump the actions-minor-and-patch group with 3 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-10T02:21:26.000Z","updated_at":"2026-06-10T02:21:58.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"actions-minor-and-patch","update_count":3,"packages":[{"name":"aws-actions/configure-aws-credentials","old_version":"6.1.1","new_version":"6.2.0","repository_url":"https://github.com/aws-actions/configure-aws-credentials"},{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.142","repository_url":"https://github.com/anthropics/claude-code-action"},{"name":"github/codeql-action","old_version":"4.36.0","new_version":"4.36.2","repository_url":"https://github.com/github/codeql-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps the actions-minor-and-patch group with 3 updates: [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials), [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) and [github/codeql-action](https://github.com/github/codeql-action).\n\nUpdates `aws-actions/configure-aws-credentials` from 6.1.1 to 6.2.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/releases\"\u003eaws-actions/configure-aws-credentials's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.2.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.3...v6.2.0\"\u003e6.2.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd additional session tags by default (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1775\"\u003e#1775\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e0ba7685077379a14a82d01fefd511490344ebfc\"\u003ee0ba768\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd more retry logic and better logging (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1764\"\u003e#1764\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/540d0c13aedb8d55501d220bd2f0b3cdedfe84e8\"\u003e540d0c1\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd regex validation to role-session-name (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1765\"\u003e#1765\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e35449909c6ede5083a48ba4b8bbfaaa1cf09ba1\"\u003ee354499\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAllow custom session tags to be passed when assuming a role (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1759\"\u003e#1759\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/61f50f630f383628add73c1eab3f1935ba07da2b\"\u003e61f50f6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose run id in STS client user-agent (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1774\"\u003e#1774\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/29d1be30273e7ef371d59fccf6ec54572c64ec89\"\u003e29d1be3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esupport custom STS endpoints (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1762\"\u003e#1762\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/8d52d05d7a4521fa52b39de50cb6114b12e5c332\"\u003e8d52d05\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eskip credential check on output-env-credentials: false (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1778\"\u003e#1778\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/58e7c47adf77846879008deadfeeef8a6969fe6c\"\u003e58e7c47\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eassumeRole failing from session tag size too large (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1808\"\u003e#1808\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/d6f5dc331b44474b19a52caaf85fa4d637b13c8e\"\u003ed6f5dc3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.1.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.2...v6.1.3\"\u003e6.1.3\u003c/a\u003e (2026-05-27)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: allow kubelet token symlink in \u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/pull/1805\"\u003eaws-actions/configure-aws-credentials#1805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.1.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.1...v6.1.2\"\u003e6.1.2\u003c/a\u003e (2026-05-26)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadditional filesystem checks (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1799\"\u003e#1799\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/c39f282697aca8a78c522ecf1f7da9899a31432c\"\u003ec39f282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md\"\u003eaws-actions/configure-aws-credentials's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file. See \u003ca href=\"https://github.com/conventional-changelog/standard-version\"\u003estandard-version\u003c/a\u003e for commit guidelines.\u003c/p\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.3...v6.2.0\"\u003e6.2.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd additional session tags by default (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1775\"\u003e#1775\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e0ba7685077379a14a82d01fefd511490344ebfc\"\u003ee0ba768\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd more retry logic and better logging (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1764\"\u003e#1764\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/540d0c13aedb8d55501d220bd2f0b3cdedfe84e8\"\u003e540d0c1\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd regex validation to role-session-name (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1765\"\u003e#1765\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e35449909c6ede5083a48ba4b8bbfaaa1cf09ba1\"\u003ee354499\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAllow custom session tags to be passed when assuming a role (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1759\"\u003e#1759\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/61f50f630f383628add73c1eab3f1935ba07da2b\"\u003e61f50f6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose run id in STS client user-agent (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1774\"\u003e#1774\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/29d1be30273e7ef371d59fccf6ec54572c64ec89\"\u003e29d1be3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esupport custom STS endpoints (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1762\"\u003e#1762\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/8d52d05d7a4521fa52b39de50cb6114b12e5c332\"\u003e8d52d05\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eskip credential check on output-env-credentials: false (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1778\"\u003e#1778\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/58e7c47adf77846879008deadfeeef8a6969fe6c\"\u003e58e7c47\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eassumeRole failing from session tag size too large (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1808\"\u003e#1808\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/d6f5dc331b44474b19a52caaf85fa4d637b13c8e\"\u003ed6f5dc3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.2...v6.1.3\"\u003e6.1.3\u003c/a\u003e (2026-05-28)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: allow kubelet token symlink in \u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1805\"\u003e#1805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.1...v6.1.2\"\u003e6.1.2\u003c/a\u003e (2026-05-26)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadditional filesystem checks (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1799\"\u003e#1799\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/c39f282697aca8a78c522ecf1f7da9899a31432c\"\u003ec39f282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.0...v6.1.1\"\u003e6.1.1\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eMiscellaneous Chores\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003evarious dependency updates\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.0.0...v6.1.0\"\u003e6.1.0\u003c/a\u003e (2026-04-06)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd skip cleanup option (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1716\"\u003e#1716\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/11b1c58b24724e66aa52a847862a0c1b0c4b0c7b\"\u003e11b1c58\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1545\"\u003e#1545\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport usage of AWS Profiles (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1696\"\u003e#1696\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/a7f0c828ac76e0d049e34c920172c60f579f9eb3\"\u003ea7f0c82\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v5.1.1...v6.0.0\"\u003e6.0.0\u003c/a\u003e (2026-02-04)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e7f100cf4c008499ea8adda475de1042d6975c7b\"\u003e\u003ccode\u003ee7f100c\u003c/code\u003e\u003c/a\u003e chore(main): release 6.2.0 (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1806\"\u003e#1806\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/bbbffeab006c826c4fef54517722e4bd6ad7e5ce\"\u003e\u003ccode\u003ebbbffea\u003c/code\u003e\u003c/a\u003e chore: Update dist\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/d6f5dc331b44474b19a52caaf85fa4d637b13c8e\"\u003e\u003ccode\u003ed6f5dc3\u003c/code\u003e\u003c/a\u003e fix: assumeRole failing from session tag size too large (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1808\"\u003e#1808\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/12014c07985c020b135a0afd39774a2368feb018\"\u003e\u003ccode\u003e12014c0\u003c/code\u003e\u003c/a\u003e docs: fix typo in README.md (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1809\"\u003e#1809\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/4ab3589ed2f2cfd7ad620217486baa497bfee67d\"\u003e\u003ccode\u003e4ab3589\u003c/code\u003e\u003c/a\u003e chore: replay 6.2 devel changes onto main (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1807\"\u003e#1807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/99214aa6889fcddfa57764031d71add364327e59\"\u003e\u003ccode\u003e99214aa\u003c/code\u003e\u003c/a\u003e chore: Update dist\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/217d17914b0cd9d60b0a245d448e1b24818a1ead\"\u003e\u003ccode\u003e217d179\u003c/code\u003e\u003c/a\u003e fix: allow kubelet token symlink (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1805\"\u003e#1805\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/5548f3441ba4214d9bc45b3eb0dc57d86c453a1a\"\u003e\u003ccode\u003e5548f34\u003c/code\u003e\u003c/a\u003e chore: Update dist\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/77cd089899db691aca656a40c5feca6f9ffd1a6c\"\u003e\u003ccode\u003e77cd089\u003c/code\u003e\u003c/a\u003e chore: document container credentials provider support (and delete transitive...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/dbacf3135e24f60790e5ac01a67f84e199191db3\"\u003e\u003ccode\u003edbacf31\u003c/code\u003e\u003c/a\u003e chore: bump release version (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1801\"\u003e#1801\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/d979d5b3a71173a29b74b5b88418bfda9437d885...e7f100cf4c008499ea8adda475de1042d6975c7b\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `anthropics/claude-code-action` from 1.0.133 to 1.0.142\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.142\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.141\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003e\u003ccode\u003e11ba604\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.170 and Agent SDK to 0.3.170\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/593d7a5c4e0073569f74772c2b7b64c30ec14707\"\u003e\u003ccode\u003e593d7a5\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.169 and Agent SDK to 0.3.169\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github/codeql-action` from 4.36.0 to 4.36.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/github/codeql-action/releases\"\u003egithub/codeql-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.36.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCache CodeQL CLI version information across Actions steps. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3943\"\u003e#3943\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3937\"\u003e#3937\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6\"\u003e2.25.6\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3948\"\u003e#3948\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.36.1\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/github/codeql-action/blob/main/CHANGELOG.md\"\u003egithub/codeql-action's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eCodeQL Action Changelog\u003c/h1\u003e\n\u003cp\u003eSee the \u003ca href=\"https://github.com/github/codeql-action/releases\"\u003ereleases page\u003c/a\u003e for the relevant changes to the CodeQL CLI and language packs.\u003c/p\u003e\n\u003ch2\u003e[UNRELEASED]\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003ch2\u003e4.36.2 - 04 Jun 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCache CodeQL CLI version information across Actions steps. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3943\"\u003e#3943\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3937\"\u003e#3937\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6\"\u003e2.25.6\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3948\"\u003e#3948\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.36.1 - 02 Jun 2026\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003ch2\u003e4.36.0 - 22 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cem\u003eBreaking change\u003c/em\u003e: Bump the minimum required CodeQL bundle version to 2.19.4. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3894\"\u003e#3894\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for SHA-256 Git object IDs. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3893\"\u003e#3893\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.5\"\u003e2.25.5\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3926\"\u003e#3926\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.5 - 15 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eWe have improved how the JavaScript bundles for the CodeQL Action are generated to avoid duplication across bundles and reduce the size of the repository by around 70%. This should have no effect on the runtime behaviour of the CodeQL Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3899\"\u003e#3899\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFor performance and accuracy reasons, \u003ca href=\"https://redirect.github.com/github/roadmap/issues/1158\"\u003eimproved incremental analysis\u003c/a\u003e will now only be enabled on a pull request when diff-informed analysis is also enabled for that run. If diff-informed analysis is unavailable (for example, because the PR diff ranges could not be computed), the action will fall back to a full analysis. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3791\"\u003e#3791\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eIf multiple inputs are provided for the GitHub-internal \u003ccode\u003eanalysis-kinds\u003c/code\u003e input, only \u003ccode\u003ecode-scanning\u003c/code\u003e will be enabled. The \u003ccode\u003eanalysis-kinds\u003c/code\u003e input is experimental, for GitHub-internal use only, and may change without notice at any time. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3892\"\u003e#3892\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded an experimental change which, when running a Code Scanning analysis for a PR with \u003ca href=\"https://redirect.github.com/github/roadmap/issues/1158\"\u003eimproved incremental analysis\u003c/a\u003e enabled, prefers CodeQL CLI versions that have a cached overlay-base database for the configured languages. This speeds up analysis for a repository when there is not yet a cached overlay-base database for the latest CLI version. We expect to roll this change out to everyone in May. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3880\"\u003e#3880\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.4 - 07 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.4\"\u003e2.25.4\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3881\"\u003e#3881\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.3 - 01 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cem\u003eUpcoming breaking change\u003c/em\u003e: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3837\"\u003e#3837\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigurations for private registries that use Cloudsmith or GCP OIDC are now accepted. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3850\"\u003e#3850\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBest-effort connection tests for private registries now use \u003ccode\u003eGET\u003c/code\u003e requests instead of \u003ccode\u003eHEAD\u003c/code\u003e for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3853\"\u003e#3853\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3852\"\u003e#3852\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3\"\u003e2.25.3\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3865\"\u003e#3865\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.2 - 15 Apr 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eThe undocumented TRAP cache cleanup feature that could be enabled using the \u003ccode\u003eCODEQL_ACTION_CLEANUP_TRAP_CACHES\u003c/code\u003e environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the \u003ccode\u003etrap-caching: false\u003c/code\u003e input to the \u003ccode\u003einit\u003c/code\u003e Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3795\"\u003e#3795\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eThe Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3789\"\u003e#3789\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePython analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3794\"\u003e#3794\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3807\"\u003e#3807\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2\"\u003e2.25.2\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3823\"\u003e#3823\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/8aad20d150bbac5944a9f9d289da16a4b0d87c1e\"\u003e\u003ccode\u003e8aad20d\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3949\"\u003e#3949\u003c/a\u003e from github/update-v4.36.2-dcb947ce1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/f521b08cd8f468ab193ea950a589cb2e9c869c6a\"\u003e\u003ccode\u003ef521b08\u003c/code\u003e\u003c/a\u003e Add additional changelog notes\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/8aeff0ffb7b78582ee0d0e6eebb8140684400d08\"\u003e\u003ccode\u003e8aeff0f\u003c/code\u003e\u003c/a\u003e Update changelog for v4.36.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/dcb947ce15976d40ea82935510b2db4872ec124c\"\u003e\u003ccode\u003edcb947c\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3948\"\u003e#3948\u003c/a\u003e from github/update-bundle/codeql-bundle-v2.25.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/c251bcefa178f7780f62f150002acffe3d07fde9\"\u003e\u003ccode\u003ec251bce\u003c/code\u003e\u003c/a\u003e Add changelog note\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/62953c18b35f59e28351d2f1e806925aef8b1e3c\"\u003e\u003ccode\u003e62953c1\u003c/code\u003e\u003c/a\u003e Update default bundle to codeql-bundle-v2.25.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/423b570baf1976cd7a3daeba5d6e9f9b76432f37\"\u003e\u003ccode\u003e423b570\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3946\"\u003e#3946\u003c/a\u003e from github/dependabot/npm_and_yarn/npm-minor-5d507a...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/c35d1b164463ee62a100735382aaaa525c5d3496\"\u003e\u003ccode\u003ec35d1b1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3947\"\u003e#3947\u003c/a\u003e from github/dependabot/github_actions/dot-github/wor...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/cb1a588b02755b176e7b9d033ed4b69312f0e1bd\"\u003e\u003ccode\u003ecb1a588\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3937\"\u003e#3937\u003c/a\u003e from github/robertbrignull/waitForProcessing_backoff\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/ba47406412c54532b5b4fcfbaf877c9e2382b206\"\u003e\u003ccode\u003eba47406\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3943\"\u003e#3943\u003c/a\u003e from github/henrymercer/cache-cli-version-info\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/github/codeql-action/compare/7211b7c8077ea37d8641b6271f6a365a22a5fbfa...8aad20d150bbac5944a9f9d289da16a4b0d87c1e\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/msu-denver/discord-email-verification/pull/55","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/msu-denver%2Fdiscord-email-verification/issues/55","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/55/packages"},{"uuid":"4625328977","node_id":"PR_kwDOPQIb9c7kjAgW","number":821,"state":"open","title":"ci(deps): bump anthropics/claude-code-action from 1.0.140 to 1.0.142","user":"dependabot[bot]","labels":["dependencies","automated"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-09T20:23:23.000Z","updated_at":"2026-06-09T20:30:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.140","new_version":"1.0.142","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.140 to 1.0.142.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.142\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.141\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003e\u003ccode\u003e11ba604\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.170 and Agent SDK to 0.3.170\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/593d7a5c4e0073569f74772c2b7b64c30ec14707\"\u003e\u003ccode\u003e593d7a5\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.169 and Agent SDK to 0.3.169\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1...11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.140\u0026new-version=1.0.142)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/nikhillinit/Updog_restore/pull/821","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikhillinit%2FUpdog_restore/issues/821","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/821/packages"},{"uuid":"4619380225","node_id":"PR_kwDOQ227Rs7kPUYm","number":835,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.134","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-09T06:14:25.000Z","updated_at":"2026-06-09T06:15:36.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.134","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.134.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/7f37f2e37370b88fc5bd16496c0512c6e8aa2e45\"\u003e\u003ccode\u003e7f37f2e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.160 and Agent SDK to 0.3.160\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fb53c379a095ce320374ea95deb57e86e7f59313\"\u003e\u003ccode\u003efb53c37\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.159 and Agent SDK to 0.3.159\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/c5c315c8a1080dbacfe5cee8ce7817b6865689f0\"\u003e\u003ccode\u003ec5c315c\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.158 and Agent SDK to 0.3.158\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/f809dea0ba1e57aaec370e112e7aa0c63720715d\"\u003e\u003ccode\u003ef809dea\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.157 and Agent SDK to 0.3.157\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0fb1b8f3032f540a5904180f71bf8c0d320e0674\"\u003e\u003ccode\u003e0fb1b8f\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.156 and Agent SDK to 0.3.156\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/3d4c9fde8ea318717e7ecb704aeee7396c503cbc\"\u003e\u003ccode\u003e3d4c9fd\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.154 and Agent SDK to 0.3.154\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1.0.133...v1.0.134\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.134)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/felipewilliam2/AV-SITE/pull/835","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/felipewilliam2%2FAV-SITE/issues/835","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/835/packages"},{"uuid":"4616410113","node_id":"PR_kwDOHd0S1c7kFeM8","number":10795,"state":"closed","title":"Bump anthropics/claude-code-action from 1 to 1.0.133 in the actions group","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-12T04:43:05.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T20:30:37.000Z","updated_at":"2026-06-12T04:43:07.000Z","time_to_close":288748,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"anthropics/claude-code-action","old_version":"1","new_version":"1.0.133","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":"the actions group","ecosystem":"actions"},"body":"Bumps the actions group with 1 update: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action).\n\nUpdates `anthropics/claude-code-action` from 1 to 1.0.133\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Workload Identity Federation (OIDC) authentication support by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1338\"\u003eanthropics/claude-code-action#1338\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.129\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.129\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.129\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.128\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.128\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.128\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.127\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eRefactor allowed_bots actor resolution by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1330\"\u003eanthropics/claude-code-action#1330\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.127\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.127\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.126\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.126\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.126\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.125\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSimplify comment tool instructions in prompt by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1328\"\u003eanthropics/claude-code-action#1328\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.125\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.125\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.124\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: add parentheses to fix operator precedence in co-author check by \u003ca href=\"https://github.com/FuturizeRush\"\u003e\u003ccode\u003e@​FuturizeRush\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1199\"\u003eanthropics/claude-code-action#1199\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eStrengthen simplified tag-mode prompt (USE_SIMPLE_PROMPT) by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1313\"\u003eanthropics/claude-code-action#1313\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix prettier formatting in create-prompt by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1325\"\u003eanthropics/claude-code-action#1325\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b020494b5730f8571c0b2e636a34f77eae7b8261\"\u003e\u003ccode\u003eb020494\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.143 and Agent SDK to 0.3.143\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d56f10247e2dcf6fddb45f01805c4b96bfcfe56c\"\u003e\u003ccode\u003ed56f102\u003c/code\u003e\u003c/a\u003e Strengthen simplified tag-mode prompt (USE_SIMPLE_PROMPT) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1313\"\u003e#1313\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bbad5183ff223fbcffe0f77d1cda997681296523\"\u003e\u003ccode\u003ebbad518\u003c/code\u003e\u003c/a\u003e fix: add parentheses to fix operator precedence in co-author check (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1199\"\u003e#1199\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/51ea8ea73a139f2a74ff649e3092c25a904aed7e\"\u003e\u003ccode\u003e51ea8ea\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.142 and Agent SDK to 0.3.142\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/acfa366ca8f2fc77b87a6d750c60661dc6cd2d84\"\u003e\u003ccode\u003eacfa366\u003c/code\u003e\u003c/a\u003e chore: bump pinned Bun to 1.3.14 (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1312\"\u003e#1312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9eb125afe37fb6baf7bf6e914e6cdf151c4d088d\"\u003e\u003ccode\u003e9eb125a\u003c/code\u003e\u003c/a\u003e fix: handle non-user actors (e.g. Copilot) in permission and actor checks (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1\"\u003e#1\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/1450f658d3a8e185d1ff9be0810420ac8bfbc5f4\"\u003e\u003ccode\u003e1450f65\u003c/code\u003e\u003c/a\u003e fix: write execution file when SDK throws (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0756f6ef2bee1c37e43b07fb1dd8e83d835a0b60\"\u003e\u003ccode\u003e0756f6e\u003c/code\u003e\u003c/a\u003e fix: exclude .claude-pr snapshot from git staging (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1277\"\u003e#1277\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/f4d6a11de140b67a978a8b8becd31cf84470cafd\"\u003e\u003ccode\u003ef4d6a11\u003c/code\u003e\u003c/a\u003e fix: dereference symlinks when snapshotting sensitive paths to .claude-pr/ (#...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bf6d40e0688f27760ff7564735aaf60c260396a0\"\u003e\u003ccode\u003ebf6d40e\u003c/code\u003e\u003c/a\u003e fix: allow , in branch names (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1310\"\u003e#1310\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1\u0026new-version=1.0.133)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/bluesky-social/social-app/pull/10795","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluesky-social%2Fsocial-app/issues/10795","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10795/packages"},{"uuid":"4614514937","node_id":"PR_kwDOR-VHWc7j_Hd4","number":51,"state":"closed","title":"build(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-10T02:21:31.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T16:08:48.000Z","updated_at":"2026-06-10T02:21:33.000Z","time_to_close":123163,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/msu-denver/discord-email-verification/pull/51","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/msu-denver%2Fdiscord-email-verification/issues/51","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/51/packages"},{"uuid":"4614042416","node_id":"PR_kwDOQG-mB87j9iY4","number":99,"state":"closed","title":"ci(deps): bump anthropics/claude-code-action from 1.0.123 to 1.0.140","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-15T15:08:36.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T15:06:47.000Z","updated_at":"2026-06-15T15:08:38.000Z","time_to_close":604909,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.123","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.123 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Workload Identity Federation (OIDC) authentication support by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1338\"\u003eanthropics/claude-code-action#1338\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.129\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/51ea8ea73a139f2a74ff649e3092c25a904aed7e...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.123\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Coastal-Programs/notion-cli/pull/99","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Coastal-Programs%2Fnotion-cli/issues/99","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/99/packages"},{"uuid":"4613729345","node_id":"PR_kwDOQ630NM7j8glp","number":17195,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":["dco-signoff: yes","size/XS","dependencies","ai-generated","tier/3-restricted"],"assignees":[],"locked":false,"comments_count":6,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T14:25:15.000Z","updated_at":"2026-06-09T01:10:02.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/kubestellar/console/pull/17195","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubestellar%2Fconsole/issues/17195","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/17195/packages"},{"uuid":"4611565659","node_id":"PR_kwDOSCwfQs7j1Ui0","number":71,"state":"closed","title":"chore(deps): bump anthropics/claude-code-action from 1.0.101 to 1.0.140","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-15T09:23:02.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T09:20:59.000Z","updated_at":"2026-06-15T09:23:05.000Z","time_to_close":604923,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.101","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.101 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Workload Identity Federation (OIDC) authentication support by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1338\"\u003eanthropics/claude-code-action#1338\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.129\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/38ec876110f9fbf8b950c79f534430740c3ac009...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.101\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/alexdoroshevich/RegScope/pull/71","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexdoroshevich%2FRegScope/issues/71","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/71/packages"},{"uuid":"4611486615","node_id":"PR_kwDOPXNGM87j1DnB","number":10325,"state":"closed","title":"ci(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":["dependencies","automated"],"assignees":["itstimwhite"],"locked":false,"comments_count":20,"pull_request":true,"closed_at":"2026-06-10T05:10:52.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T09:09:27.000Z","updated_at":"2026-06-10T05:11:03.000Z","time_to_close":158485,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/JovieInc/Jovie/pull/10325","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/JovieInc%2FJovie/issues/10325","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10325/packages"},{"uuid":"4610534611","node_id":"PR_kwDOSjd-S87jx8Nr","number":68,"state":"open","title":"ci(deps): bump the actions group across 1 directory with 6 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T06:28:51.000Z","updated_at":"2026-06-08T06:29:16.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps): bump","group_name":"actions","update_count":6,"packages":[{"name":"actions/checkout","old_version":"6.0.2","new_version":"6.0.3","repository_url":"https://github.com/actions/checkout"},{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"},{"name":"github/codeql-action","old_version":"4.36.0","new_version":"4.36.2","repository_url":"https://github.com/github/codeql-action"},{"name":"docker/setup-qemu-action","old_version":"4.0.0","new_version":"4.1.0","repository_url":"https://github.com/docker/setup-qemu-action"},{"name":"EmbarkStudios/cargo-deny-action","old_version":"2.0.19","new_version":"2.0.20","repository_url":"https://github.com/embarkstudios/cargo-deny-action"},{"name":"trufflesecurity/trufflehog","old_version":"3.95.3","new_version":"3.95.5","repository_url":"https://github.com/trufflesecurity/trufflehog"}],"path":null,"ecosystem":"actions"},"body":"Bumps the actions group with 6 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `6.0.3` |\n| [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.133` | `1.0.140` |\n| [github/codeql-action](https://github.com/github/codeql-action) | `4.36.0` | `4.36.2` |\n| [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `4.0.0` | `4.1.0` |\n| [EmbarkStudios/cargo-deny-action](https://github.com/embarkstudios/cargo-deny-action) | `2.0.19` | `2.0.20` |\n| [trufflesecurity/trufflehog](https://github.com/trufflesecurity/trufflehog) | `3.95.3` | `3.95.5` |\n\n\nUpdates `actions/checkout` from 6.0.2 to 6.0.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/releases\"\u003eactions/checkout's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate changelog by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2357\"\u003eactions/checkout#2357\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: expand merge commit SHA regex and add SHA-256 test cases by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix checkout init for SHA-256 repositories by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2439\"\u003eactions/checkout#2439\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate changelog for v6.0.3 by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2446\"\u003eactions/checkout#2446\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v6...v6.0.3\"\u003ehttps://github.com/actions/checkout/compare/v6...v6.0.3\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/blob/main/CHANGELOG.md\"\u003eactions/checkout's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003ev6.0.3\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix checkout init for SHA-256 repositories by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2439\"\u003eactions/checkout#2439\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: expand merge commit SHA regex and add SHA-256 test cases by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix tag handling: preserve annotations and explicit fetch-tags by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2356\"\u003eactions/checkout#2356\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd worktree support for persist-credentials includeIf by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2327\"\u003eactions/checkout#2327\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePersist creds to a separate file by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2286\"\u003eactions/checkout#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate README to include Node.js 24 support details and requirements by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2248\"\u003eactions/checkout#2248\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev5.0.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v5 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2301\"\u003eactions/checkout#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev5.0.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate actions checkout to use node 24 by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2226\"\u003eactions/checkout#2226\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.3.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v4 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2305\"\u003eactions/checkout#2305\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.3.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs: update README.md by \u003ca href=\"https://github.com/motss\"\u003e\u003ccode\u003e@​motss\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1971\"\u003eactions/checkout#1971\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd internal repos for checking out multiple repositories by \u003ca href=\"https://github.com/mouismail\"\u003e\u003ccode\u003e@​mouismail\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1977\"\u003eactions/checkout#1977\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDocumentation update - add recommended permissions to Readme by \u003ca href=\"https://github.com/benwells\"\u003e\u003ccode\u003e@​benwells\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2043\"\u003eactions/checkout#2043\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdjust positioning of user email note and permissions heading by \u003ca href=\"https://github.com/joshmgross\"\u003e\u003ccode\u003e@​joshmgross\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2044\"\u003eactions/checkout#2044\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate README.md by \u003ca href=\"https://github.com/nebuk89\"\u003e\u003ccode\u003e@​nebuk89\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2194\"\u003eactions/checkout#2194\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CODEOWNERS for actions by \u003ca href=\"https://github.com/TingluoHuang\"\u003e\u003ccode\u003e@​TingluoHuang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2224\"\u003eactions/checkout#2224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate package dependencies by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2236\"\u003eactions/checkout#2236\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eurl-helper.ts\u003c/code\u003e now leverages well-known environment variables by \u003ca href=\"https://github.com/jww3\"\u003e\u003ccode\u003e@​jww3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1941\"\u003eactions/checkout#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExpand unit test coverage for \u003ccode\u003eisGhes\u003c/code\u003e by \u003ca href=\"https://github.com/jww3\"\u003e\u003ccode\u003e@​jww3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1946\"\u003eactions/checkout#1946\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCheck out other refs/* by commit if provided, fall back to ref by \u003ca href=\"https://github.com/orhantoy\"\u003e\u003ccode\u003e@​orhantoy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1924\"\u003eactions/checkout#1924\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Ref and Commit outputs by \u003ca href=\"https://github.com/lucacome\"\u003e\u003ccode\u003e@​lucacome\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1180\"\u003eactions/checkout#1180\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDependency updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e- \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1777\"\u003eactions/checkout#1777\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1872\"\u003eactions/checkout#1872\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.1.7\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump the minor-npm-dependencies group across 1 directory with 4 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1739\"\u003eactions/checkout#1739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1697\"\u003eactions/checkout#1697\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck out other refs/* by commit by \u003ca href=\"https://github.com/orhantoy\"\u003e\u003ccode\u003e@​orhantoy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1774\"\u003eactions/checkout#1774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003e\u003ccode\u003edf4cb1c\u003c/code\u003e\u003c/a\u003e Update changelog for v6.0.3 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2446\"\u003e#2446\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/1cce3390c2bfda521930d01229c073c7ff920824\"\u003e\u003ccode\u003e1cce339\u003c/code\u003e\u003c/a\u003e Fix checkout init for SHA-256 repositories (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2439\"\u003e#2439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/900f2210b1d28bbbd0bd22d17926b9e224e8f231\"\u003e\u003ccode\u003e900f221\u003c/code\u003e\u003c/a\u003e fix: expand merge commit SHA regex and add SHA-256 test cases (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2414\"\u003e#2414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/0c366fd6a839edf440554fa01a7085ccba70ac98\"\u003e\u003ccode\u003e0c366fd\u003c/code\u003e\u003c/a\u003e Update changelog (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2357\"\u003e#2357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `anthropics/claude-code-action` from 1.0.133 to 1.0.140\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github/codeql-action` from 4.36.0 to 4.36.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/github/codeql-action/releases\"\u003egithub/codeql-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.36.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCache CodeQL CLI version information across Actions steps. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3943\"\u003e#3943\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3937\"\u003e#3937\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6\"\u003e2.25.6\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3948\"\u003e#3948\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.36.1\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/github/codeql-action/blob/main/CHANGELOG.md\"\u003egithub/codeql-action's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eCodeQL Action Changelog\u003c/h1\u003e\n\u003cp\u003eSee the \u003ca href=\"https://github.com/github/codeql-action/releases\"\u003ereleases page\u003c/a\u003e for the relevant changes to the CodeQL CLI and language packs.\u003c/p\u003e\n\u003ch2\u003e[UNRELEASED]\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003ch2\u003e4.36.2 - 04 Jun 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCache CodeQL CLI version information across Actions steps. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3943\"\u003e#3943\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3937\"\u003e#3937\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6\"\u003e2.25.6\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3948\"\u003e#3948\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.36.1 - 02 Jun 2026\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003ch2\u003e4.36.0 - 22 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cem\u003eBreaking change\u003c/em\u003e: Bump the minimum required CodeQL bundle version to 2.19.4. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3894\"\u003e#3894\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for SHA-256 Git object IDs. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3893\"\u003e#3893\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.5\"\u003e2.25.5\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3926\"\u003e#3926\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.5 - 15 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eWe have improved how the JavaScript bundles for the CodeQL Action are generated to avoid duplication across bundles and reduce the size of the repository by around 70%. This should have no effect on the runtime behaviour of the CodeQL Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3899\"\u003e#3899\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFor performance and accuracy reasons, \u003ca href=\"https://redirect.github.com/github/roadmap/issues/1158\"\u003eimproved incremental analysis\u003c/a\u003e will now only be enabled on a pull request when diff-informed analysis is also enabled for that run. If diff-informed analysis is unavailable (for example, because the PR diff ranges could not be computed), the action will fall back to a full analysis. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3791\"\u003e#3791\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eIf multiple inputs are provided for the GitHub-internal \u003ccode\u003eanalysis-kinds\u003c/code\u003e input, only \u003ccode\u003ecode-scanning\u003c/code\u003e will be enabled. The \u003ccode\u003eanalysis-kinds\u003c/code\u003e input is experimental, for GitHub-internal use only, and may change without notice at any time. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3892\"\u003e#3892\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded an experimental change which, when running a Code Scanning analysis for a PR with \u003ca href=\"https://redirect.github.com/github/roadmap/issues/1158\"\u003eimproved incremental analysis\u003c/a\u003e enabled, prefers CodeQL CLI versions that have a cached overlay-base database for the configured languages. This speeds up analysis for a repository when there is not yet a cached overlay-base database for the latest CLI version. We expect to roll this change out to everyone in May. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3880\"\u003e#3880\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.4 - 07 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.4\"\u003e2.25.4\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3881\"\u003e#3881\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.3 - 01 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cem\u003eUpcoming breaking change\u003c/em\u003e: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3837\"\u003e#3837\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigurations for private registries that use Cloudsmith or GCP OIDC are now accepted. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3850\"\u003e#3850\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBest-effort connection tests for private registries now use \u003ccode\u003eGET\u003c/code\u003e requests instead of \u003ccode\u003eHEAD\u003c/code\u003e for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3853\"\u003e#3853\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3852\"\u003e#3852\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3\"\u003e2.25.3\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3865\"\u003e#3865\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.2 - 15 Apr 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eThe undocumented TRAP cache cleanup feature that could be enabled using the \u003ccode\u003eCODEQL_ACTION_CLEANUP_TRAP_CACHES\u003c/code\u003e environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the \u003ccode\u003etrap-caching: false\u003c/code\u003e input to the \u003ccode\u003einit\u003c/code\u003e Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3795\"\u003e#3795\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eThe Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3789\"\u003e#3789\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePython analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3794\"\u003e#3794\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3807\"\u003e#3807\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2\"\u003e2.25.2\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3823\"\u003e#3823\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/8aad20d150bbac5944a9f9d289da16a4b0d87c1e\"\u003e\u003ccode\u003e8aad20d\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3949\"\u003e#3949\u003c/a\u003e from github/update-v4.36.2-dcb947ce1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/f521b08cd8f468ab193ea950a589cb2e9c869c6a\"\u003e\u003ccode\u003ef521b08\u003c/code\u003e\u003c/a\u003e Add additional changelog notes\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/8aeff0ffb7b78582ee0d0e6eebb8140684400d08\"\u003e\u003ccode\u003e8aeff0f\u003c/code\u003e\u003c/a\u003e Update changelog for v4.36.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/dcb947ce15976d40ea82935510b2db4872ec124c\"\u003e\u003ccode\u003edcb947c\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3948\"\u003e#3948\u003c/a\u003e from github/update-bundle/codeql-bundle-v2.25.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/c251bcefa178f7780f62f150002acffe3d07fde9\"\u003e\u003ccode\u003ec251bce\u003c/code\u003e\u003c/a\u003e Add changelog note\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/62953c18b35f59e28351d2f1e806925aef8b1e3c\"\u003e\u003ccode\u003e62953c1\u003c/code\u003e\u003c/a\u003e Update default bundle to codeql-bundle-v2.25.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/423b570baf1976cd7a3daeba5d6e9f9b76432f37\"\u003e\u003ccode\u003e423b570\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3946\"\u003e#3946\u003c/a\u003e from github/dependabot/npm_and_yarn/npm-minor-5d507a...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/c35d1b164463ee62a100735382aaaa525c5d3496\"\u003e\u003ccode\u003ec35d1b1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3947\"\u003e#3947\u003c/a\u003e from github/dependabot/github_actions/dot-github/wor...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/cb1a588b02755b176e7b9d033ed4b69312f0e1bd\"\u003e\u003ccode\u003ecb1a588\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3937\"\u003e#3937\u003c/a\u003e from github/robertbrignull/waitForProcessing_backoff\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/ba47406412c54532b5b4fcfbaf877c9e2382b206\"\u003e\u003ccode\u003eba47406\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3943\"\u003e#3943\u003c/a\u003e from github/henrymercer/cache-cli-version-info\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/github/codeql-action/compare/7211b7c8077ea37d8641b6271f6a365a22a5fbfa...8aad20d150bbac5944a9f9d289da16a4b0d87c1e\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `docker/setup-qemu-action` from 4.0.0 to 4.1.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/docker/setup-qemu-action/releases\"\u003edocker/setup-qemu-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.1.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003ereset\u003c/code\u003e input to uninstall current emulators by \u003ca href=\"https://github.com/crazy-max\"\u003e\u003ccode\u003e@​crazy-max\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/21\"\u003edocker/setup-qemu-action#21\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump \u003ccode\u003e@​docker/actions-toolkit\u003c/code\u003e from 0.77.0 to 0.91.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/250\"\u003edocker/setup-qemu-action#250\u003c/a\u003e \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/247\"\u003edocker/setup-qemu-action#247\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump brace-expansion from 1.1.12 to 1.1.15 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/265\"\u003edocker/setup-qemu-action#265\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump fast-xml-builder from 1.0.0 to 1.2.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/286\"\u003edocker/setup-qemu-action#286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump fast-xml-parser from 5.4.2 to 5.8.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/255\"\u003edocker/setup-qemu-action#255\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump flatted from 3.3.3 to 3.4.2 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/257\"\u003edocker/setup-qemu-action#257\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump glob from 10.3.15 to 10.5.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/254\"\u003edocker/setup-qemu-action#254\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump handlebars from 4.7.8 to 4.7.9 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/262\"\u003edocker/setup-qemu-action#262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump lodash from 4.17.23 to 4.18.1 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/273\"\u003edocker/setup-qemu-action#273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump postcss from 8.5.6 to 8.5.10 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/285\"\u003edocker/setup-qemu-action#285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 6.2.1 to 7.5.15 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/287\"\u003edocker/setup-qemu-action#287\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tmp from 0.2.5 to 0.2.6 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/291\"\u003edocker/setup-qemu-action#291\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump undici from 6.23.0 to 6.26.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/251\"\u003edocker/setup-qemu-action#251\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump vite from 7.3.1 to 7.3.2 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/271\"\u003edocker/setup-qemu-action#271\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/docker/setup-qemu-action/compare/v4.0.0...v4.1.0\"\u003ehttps://github.com/docker/setup-qemu-action/compare/v4.0.0...v4.1.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/06116385d9baf250c9f4dcb4858b16962ea869c3\"\u003e\u003ccode\u003e0611638\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/issues/21\"\u003e#21\u003c/a\u003e from crazy-max/uninst\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/ce59c818a5ff16552ddf7407ee7cb00bea682925\"\u003e\u003ccode\u003ece59c81\u003c/code\u003e\u003c/a\u003e chore: update generated content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/2ddad4401e17fa807e8a3c4bd289ccdd993f0868\"\u003e\u003ccode\u003e2ddad44\u003c/code\u003e\u003c/a\u003e uninstall current emulators\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/8c37cd6f3456e1f3f3026250eac496709e9e7e10\"\u003e\u003ccode\u003e8c37cd6\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/issues/250\"\u003e#250\u003c/a\u003e from docker/dependabot/npm_and_yarn/docker/actions-to...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/d1a0ff34af591b8e290e46f3fa114ef5bb81cd1c\"\u003e\u003ccode\u003ed1a0ff3\u003c/code\u003e\u003c/a\u003e chore: update generated content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/0a8f3dc12541cc2c3b19c182a1a2c90a2c8b8d93\"\u003e\u003ccode\u003e0a8f3dc\u003c/code\u003e\u003c/a\u003e build(deps): bump \u003ccode\u003e@​docker/actions-toolkit\u003c/code\u003e from 0.79.0 to 0.91.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/9430f61a7691bd1bfdc4d6ba70e558659d36fa7a\"\u003e\u003ccode\u003e9430f61\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/issues/291\"\u003e#291\u003c/a\u003e from docker/dependabot/npm_and_yarn/tmp-0.2.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/978bd7796cb6698377e7af6726b726e5ced642d0\"\u003e\u003ccode\u003e978bd77\u003c/code\u003e\u003c/a\u003e chore: update generated content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/3479febc62cc0fbcb98c7c7fc0dac778c0d79d6a\"\u003e\u003ccode\u003e3479feb\u003c/code\u003e\u003c/a\u003e build(deps): bump tmp from 0.2.5 to 0.2.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/b113c264143c28c2974bed61af25be32d32f4782\"\u003e\u003ccode\u003eb113c26\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/issues/255\"\u003e#255\u003c/a\u003e from docker/dependabot/npm_and_yarn/fast-xml-parser-5...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/setup-qemu-action/compare/ce360397dd3f832beb865e1373c09c0e9f86d70a...06116385d9baf250c9f4dcb4858b16962ea869c3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `EmbarkStudios/cargo-deny-action` from 2.0.19 to 2.0.20\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/EmbarkStudios/cargo-deny-action/commit/bb137d7af7e4fb67e5f82a49c4fce4fad40782fe\"\u003e\u003ccode\u003ebb137d7\u003c/code\u003e\u003c/a\u003e Bump to 0.19.8\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/embarkstudios/cargo-deny-action/compare/a531616d8ce3b9177443e48a1159bc945a099823...bb137d7af7e4fb67e5f82a49c4fce4fad40782fe\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `trufflesecurity/trufflehog` from 3.95.3 to 3.95.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/trufflesecurity/trufflehog/releases\"\u003etrufflesecurity/trufflehog's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.95.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[INS-461] Add test to ensure new detectors are registered in defaults.go by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4915\"\u003etrufflesecurity/trufflehog#4915\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-455] Unify common logic in Atlassian Data Center detectors by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4907\"\u003etrufflesecurity/trufflehog#4907\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(github): cache repo info under original URL on redirect by \u003ca href=\"https://github.com/kashifkhan0771\"\u003e\u003ccode\u003e@​kashifkhan0771\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4958\"\u003etrufflesecurity/trufflehog#4958\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded GitLab OAuth Detector by \u003ca href=\"https://github.com/shahzadhaider1\"\u003e\u003ccode\u003e@​shahzadhaider1\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4729\"\u003etrufflesecurity/trufflehog#4729\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBox Detector: Extract Subject ID for Analyzer Integration by \u003ca href=\"https://github.com/shahzadhaider1\"\u003e\u003ccode\u003e@​shahzadhaider1\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4761\"\u003etrufflesecurity/trufflehog#4761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-346] SpectralOps Personal API Key Detector by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4770\"\u003etrufflesecurity/trufflehog#4770\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-335] Added AWS Appsync Detector by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4803\"\u003etrufflesecurity/trufflehog#4803\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(twilio): deduplicate matches to prevent O(N×M) result explosion by \u003ca href=\"https://github.com/kashifkhan0771\"\u003e\u003ccode\u003e@​kashifkhan0771\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4954\"\u003etrufflesecurity/trufflehog#4954\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomate corpora testing in CI by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4927\"\u003etrufflesecurity/trufflehog#4927\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnable errcheck and staticcheck for golangci-lint v2 and resolve all issues by \u003ca href=\"https://github.com/amanfcp\"\u003e\u003ccode\u003e@​amanfcp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4924\"\u003etrufflesecurity/trufflehog#4924\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add host, db and username to ExtraData for database detectors by \u003ca href=\"https://github.com/mariocj89\"\u003e\u003ccode\u003e@​mariocj89\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4849\"\u003etrufflesecurity/trufflehog#4849\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove over speculation from Corpora CI workflow by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4974\"\u003etrufflesecurity/trufflehog#4974\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix line numbers for duplicate secrets within a chunk by \u003ca href=\"https://github.com/amanfcp\"\u003e\u003ccode\u003e@​amanfcp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4910\"\u003etrufflesecurity/trufflehog#4910\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd feature flags for Pinecone, Cloudinary, and GitLab OAuth detectors by \u003ca href=\"https://github.com/camgunz\"\u003e\u003ccode\u003e@​camgunz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4961\"\u003etrufflesecurity/trufflehog#4961\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate Go security dependencies by \u003ca href=\"https://github.com/cursor\"\u003e\u003ccode\u003e@​cursor\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4986\"\u003etrufflesecurity/trufflehog#4986\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin GitHub Actions to SHA digests by \u003ca href=\"https://github.com/bryanbeverly\"\u003e\u003ccode\u003e@​bryanbeverly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4985\"\u003etrufflesecurity/trufflehog#4985\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CODEOWNERS: replace 5 slugs with scanning + integrations by \u003ca href=\"https://github.com/bryanbeverly\"\u003e\u003ccode\u003e@​bryanbeverly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4983\"\u003etrufflesecurity/trufflehog#4983\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded source config flags to sharepoint proto by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4972\"\u003etrufflesecurity/trufflehog#4972\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[SCAN-795] HTML decoder: ASPX and entity-encoded HTML support by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4981\"\u003etrufflesecurity/trufflehog#4981\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadds some debugging info for APKs and fixes issues parsing obfuscated APKs by \u003ca href=\"https://github.com/johannestaas-trufflesec\"\u003e\u003ccode\u003e@​johannestaas-trufflesec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4991\"\u003etrufflesecurity/trufflehog#4991\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mariocj89\"\u003e\u003ccode\u003e@​mariocj89\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4849\"\u003etrufflesecurity/trufflehog#4849\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cursor\"\u003e\u003ccode\u003e@​cursor\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4986\"\u003etrufflesecurity/trufflehog#4986\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/johannestaas-trufflesec\"\u003e\u003ccode\u003e@​johannestaas-trufflesec\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4991\"\u003etrufflesecurity/trufflehog#4991\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/trufflesecurity/trufflehog/compare/v3.95.3...v3.95.5\"\u003ehttps://github.com/trufflesecurity/trufflehog/compare/v3.95.3...v3.95.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.95.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[INS-461] Add test to ensure new detectors are registered in defaults.go by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4915\"\u003etrufflesecurity/trufflehog#4915\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-455] Unify common logic in Atlassian Data Center detectors by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4907\"\u003etrufflesecurity/trufflehog#4907\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(github): cache repo info under original URL on redirect by \u003ca href=\"https://github.com/kashifkhan0771\"\u003e\u003ccode\u003e@​kashifkhan0771\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4958\"\u003etrufflesecurity/trufflehog#4958\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded GitLab OAuth Detector by \u003ca href=\"https://github.com/shahzadhaider1\"\u003e\u003ccode\u003e@​shahzadhaider1\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4729\"\u003etrufflesecurity/trufflehog#4729\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBox Detector: Extract Subject ID for Analyzer Integration by \u003ca href=\"https://github.com/shahzadhaider1\"\u003e\u003ccode\u003e@​shahzadhaider1\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4761\"\u003etrufflesecurity/trufflehog#4761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-346] SpectralOps Personal API Key Detector by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4770\"\u003etrufflesecurity/trufflehog#4770\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-335] Added AWS Appsync Detector by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4803\"\u003etrufflesecurity/trufflehog#4803\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(twilio): deduplicate matches to prevent O(N×M) result explosion by \u003ca href=\"https://github.com/kashifkhan0771\"\u003e\u003ccode\u003e@​kashifkhan0771\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4954\"\u003etrufflesecurity/trufflehog#4954\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomate corpora testing in CI by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4927\"\u003etrufflesecurity/trufflehog#4927\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnable errcheck and staticcheck for golangci-lint v2 and resolve all issues by \u003ca href=\"https://github.com/amanfcp\"\u003e\u003ccode\u003e@​amanfcp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4924\"\u003etrufflesecurity/trufflehog#4924\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add host, db and username to ExtraData for database detectors by \u003ca href=\"https://github.com/mariocj89\"\u003e\u003ccode\u003e@​mariocj89\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4849\"\u003etrufflesecurity/trufflehog#4849\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove over speculation from Corpora CI workflow by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4974\"\u003etrufflesecurity/trufflehog#4974\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix line numbers for duplicate secrets within a chunk by \u003ca href=\"https://github.com/amanfcp\"\u003e\u003ccode\u003e@​amanfcp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4910\"\u003etrufflesecurity/trufflehog#4910\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd feature flags for Pinecone, Cloudinary, and GitLab OAuth detectors by \u003ca href=\"https://github.com/camgunz\"\u003e\u003ccode\u003e@​camgunz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4961\"\u003etrufflesecurity/trufflehog#4961\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate Go security dependencies by \u003ca href=\"https://github.com/cursor\"\u003e\u003ccode\u003e@​cursor\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4986\"\u003etrufflesecurity/trufflehog#4986\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin GitHub Actions to SHA digests by \u003ca href=\"https://github.com/bryanbeverly\"\u003e\u003ccode\u003e@​bryanbeverly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4985\"\u003etrufflesecurity/trufflehog#4985\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CODEOWNERS: replace 5 slugs with scanning + integrations by \u003ca href=\"https://github.com/bryanbeverly\"\u003e\u003ccode\u003e@​bryanbeverly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4983\"\u003etrufflesecurity/trufflehog#4983\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded source config flags to sharepoint proto by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4972\"\u003etrufflesecurity/trufflehog#4972\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/d411fff7b8879a62509f3fa98c07f247ac089a51\"\u003e\u003ccode\u003ed411fff\u003c/code\u003e\u003c/a\u003e feat(apk): adds some debugging info for APKs and fixes issues parsing obfusca...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/26eae1f2969f4240acfd3fc363b504b1b43255d4\"\u003e\u003ccode\u003e26eae1f\u003c/code\u003e\u003c/a\u003e [SCAN-795] HTML decoder: ASPX and entity-encoded HTML support (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4981\"\u003e#4981\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/6c8f64071ba92640f5cc6f4177a91e9a09b0db12\"\u003e\u003ccode\u003e6c8f640\u003c/code\u003e\u003c/a\u003e Added source config flags to sharepoint proto (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4972\"\u003e#4972\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/9f0b97f1600cd5f51e5ecb8380087807acb790f9\"\u003e\u003ccode\u003e9f0b97f\u003c/code\u003e\u003c/a\u003e Update CODEOWNERS: replace 5 slugs with scanning + integrations (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4983\"\u003e#4983\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/36f6f697079e637bccb1e05561a481d8b4016862\"\u003e\u003ccode\u003e36f6f69\u003c/code\u003e\u003c/a\u003e Pin GitHub Actions to SHA digests (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4985\"\u003e#4985\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/52ebebb9b0a762ad5b84a8c2205d38dcf471bd2d\"\u003e\u003ccode\u003e52ebebb\u003c/code\u003e\u003c/a\u003e Update Go security dependencies (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4986\"\u003e#4986\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/ec67ff26cdeb5c8600a2ca83992d9347975c172a\"\u003e\u003ccode\u003eec67ff2\u003c/code\u003e\u003c/a\u003e Add feature flags for Pinecone, Cloudinary, and GitLab OAuth detectors (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4961\"\u003e#4961\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/0ec3634f6cf66a61912a923fee9d20cc45633a67\"\u003e\u003ccode\u003e0ec3634\u003c/code\u003e\u003c/a\u003e Fix line numbers for duplicate secrets within a chunk (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4910\"\u003e#4910\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/79acbf4703fe7eebd5f190073bd89b16456da7d4\"\u003e\u003ccode\u003e79acbf4\u003c/code\u003e\u003c/a\u003e Remove over speculation from Corpora CI workflow (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4974\"\u003e#4974\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/d86254ee022cc6533192c5601c143a42706c1004\"\u003e\u003ccode\u003ed86254e\u003c/code\u003e\u003c/a\u003e feat: add host, db and username to ExtraData for database detectors (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4849\"\u003e#4849\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/trufflesecurity/trufflehog/compare/37b77001d0174ebec2fcca2bd83ff83a6d45a3ab...d411fff7b8879a62509f3fa98c07f247ac089a51\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/buildwithbarista/barista/pull/68","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/buildwithbarista%2Fbarista/issues/68","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/68/packages"},{"uuid":"4610208551","node_id":"PR_kwDORhxuCs7jw5A1","number":564,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T05:16:30.000Z","updated_at":"2026-06-08T05:16:31.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/DeliciousHouse/aries-app/pull/564","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeliciousHouse%2Faries-app/issues/564","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/564/packages"},{"uuid":"4609387654","node_id":"PR_kwDORjxlvs7juP67","number":428,"state":"open","title":"chore: bump the all-minor-patch group across 1 directory with 5 updates","user":"dependabot[bot]","labels":["type/dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T01:24:51.000Z","updated_at":"2026-06-08T01:25:33.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore: bump","group_name":"all-minor-patch","update_count":5,"packages":[{"name":"actions/checkout","old_version":"6.0.2","new_version":"6.0.3","repository_url":"https://github.com/actions/checkout"},{"name":"pnpm/action-setup","old_version":"6.0.5","new_version":"6.0.8","repository_url":"https://github.com/pnpm/action-setup"},{"name":"anthropics/claude-code-action","old_version":"1.0.111","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"},{"name":"browser-actions/setup-firefox","old_version":"1.7.1","new_version":"1.7.2","repository_url":"https://github.com/browser-actions/setup-firefox"},{"name":"cypress-io/github-action","old_version":"7.1.10","new_version":"7.4.0","repository_url":"https://github.com/cypress-io/github-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps the all-minor-patch group with 5 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `6.0.3` |\n| [pnpm/action-setup](https://github.com/pnpm/action-setup) | `6.0.5` | `6.0.8` |\n| [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.111` | `1.0.140` |\n| [browser-actions/setup-firefox](https://github.com/browser-actions/setup-firefox) | `1.7.1` | `1.7.2` |\n| [cypress-io/github-action](https://github.com/cypress-io/github-action) | `7.1.10` | `7.4.0` |\n\n\nUpdates `actions/checkout` from 6.0.2 to 6.0.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/releases\"\u003eactions/checkout's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate changelog by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2357\"\u003eactions/checkout#2357\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: expand merge commit SHA regex and add SHA-256 test cases by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix checkout init for SHA-256 repositories by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2439\"\u003eactions/checkout#2439\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate changelog for v6.0.3 by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2446\"\u003eactions/checkout#2446\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v6...v6.0.3\"\u003ehttps://github.com/actions/checkout/compare/v6...v6.0.3\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/blob/main/CHANGELOG.md\"\u003eactions/checkout's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003ev6.0.3\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix checkout init for SHA-256 repositories by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2439\"\u003eactions/checkout#2439\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: expand merge commit SHA regex and add SHA-256 test cases by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix tag handling: preserve annotations and explicit fetch-tags by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2356\"\u003eactions/checkout#2356\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd worktree support for persist-credentials includeIf by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2327\"\u003eactions/checkout#2327\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePersist creds to a separate file by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2286\"\u003eactions/checkout#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate README to include Node.js 24 support details and requirements by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2248\"\u003eactions/checkout#2248\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev5.0.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v5 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2301\"\u003eactions/checkout#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev5.0.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate actions checkout to use node 24 by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2226\"\u003eactions/checkout#2226\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.3.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v4 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2305\"\u003eactions/checkout#2305\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.3.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs: update README.md by \u003ca href=\"https://github.com/motss\"\u003e\u003ccode\u003e@​motss\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1971\"\u003eactions/checkout#1971\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd internal repos for checking out multiple repositories by \u003ca href=\"https://github.com/mouismail\"\u003e\u003ccode\u003e@​mouismail\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1977\"\u003eactions/checkout#1977\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDocumentation update - add recommended permissions to Readme by \u003ca href=\"https://github.com/benwells\"\u003e\u003ccode\u003e@​benwells\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2043\"\u003eactions/checkout#2043\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdjust positioning of user email note and permissions heading by \u003ca href=\"https://github.com/joshmgross\"\u003e\u003ccode\u003e@​joshmgross\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2044\"\u003eactions/checkout#2044\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate README.md by \u003ca href=\"https://github.com/nebuk89\"\u003e\u003ccode\u003e@​nebuk89\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2194\"\u003eactions/checkout#2194\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CODEOWNERS for actions by \u003ca href=\"https://github.com/TingluoHuang\"\u003e\u003ccode\u003e@​TingluoHuang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2224\"\u003eactions/checkout#2224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate package dependencies by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2236\"\u003eactions/checkout#2236\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eurl-helper.ts\u003c/code\u003e now leverages well-known environment variables by \u003ca href=\"https://github.com/jww3\"\u003e\u003ccode\u003e@​jww3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1941\"\u003eactions/checkout#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExpand unit test coverage for \u003ccode\u003eisGhes\u003c/code\u003e by \u003ca href=\"https://github.com/jww3\"\u003e\u003ccode\u003e@​jww3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1946\"\u003eactions/checkout#1946\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCheck out other refs/* by commit if provided, fall back to ref by \u003ca href=\"https://github.com/orhantoy\"\u003e\u003ccode\u003e@​orhantoy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1924\"\u003eactions/checkout#1924\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Ref and Commit outputs by \u003ca href=\"https://github.com/lucacome\"\u003e\u003ccode\u003e@​lucacome\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1180\"\u003eactions/checkout#1180\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDependency updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e- \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1777\"\u003eactions/checkout#1777\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1872\"\u003eactions/checkout#1872\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.1.7\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump the minor-npm-dependencies group across 1 directory with 4 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1739\"\u003eactions/checkout#1739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1697\"\u003eactions/checkout#1697\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck out other refs/* by commit by \u003ca href=\"https://github.com/orhantoy\"\u003e\u003ccode\u003e@​orhantoy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1774\"\u003eactions/checkout#1774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003e\u003ccode\u003edf4cb1c\u003c/code\u003e\u003c/a\u003e Update changelog for v6.0.3 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2446\"\u003e#2446\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/1cce3390c2bfda521930d01229c073c7ff920824\"\u003e\u003ccode\u003e1cce339\u003c/code\u003e\u003c/a\u003e Fix checkout init for SHA-256 repositories (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2439\"\u003e#2439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/900f2210b1d28bbbd0bd22d17926b9e224e8f231\"\u003e\u003ccode\u003e900f221\u003c/code\u003e\u003c/a\u003e fix: expand merge commit SHA regex and add SHA-256 test cases (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2414\"\u003e#2414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/0c366fd6a839edf440554fa01a7085ccba70ac98\"\u003e\u003ccode\u003e0c366fd\u003c/code\u003e\u003c/a\u003e Update changelog (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2357\"\u003e#2357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `pnpm/action-setup` from 6.0.5 to 6.0.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pnpm/action-setup/releases\"\u003epnpm/action-setup's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs(README): fix \u003ccode\u003ecache_dependency_path\u003c/code\u003e type by \u003ca href=\"https://github.com/haines\"\u003e\u003ccode\u003e@​haines\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/257\"\u003epnpm/action-setup#257\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: drop patchPnpmEnv so standalone+self-update works on Windows by \u003ca href=\"https://github.com/zkochan\"\u003e\u003ccode\u003e@​zkochan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/258\"\u003epnpm/action-setup#258\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: update pnpm to 11.1.1 by \u003ca href=\"https://github.com/mungodewar\"\u003e\u003ccode\u003e@​mungodewar\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/248\"\u003epnpm/action-setup#248\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mungodewar\"\u003e\u003ccode\u003e@​mungodewar\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/248\"\u003epnpm/action-setup#248\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/pnpm/action-setup/compare/v6.0.7...v6.0.8\"\u003ehttps://github.com/pnpm/action-setup/compare/v6.0.7...v6.0.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev6.0.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: honor devEngines.packageManager.onFail=error (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/252\"\u003e#252\u003c/a\u003e) by \u003ca href=\"https://github.com/zkochan\"\u003e\u003ccode\u003e@​zkochan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/254\"\u003epnpm/action-setup#254\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: restore inputs from state in post by \u003ca href=\"https://github.com/haines\"\u003e\u003ccode\u003e@​haines\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/255\"\u003epnpm/action-setup#255\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: self-update bootstrap to packageManager-pinned version (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/233\"\u003e#233\u003c/a\u003e) by \u003ca href=\"https://github.com/zkochan\"\u003e\u003ccode\u003e@​zkochan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/256\"\u003epnpm/action-setup#256\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/haines\"\u003e\u003ccode\u003e@​haines\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/255\"\u003epnpm/action-setup#255\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/pnpm/action-setup/compare/v6.0.6...v6.0.7\"\u003ehttps://github.com/pnpm/action-setup/compare/v6.0.6...v6.0.7\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev6.0.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bin_dest output points to self-updated pnpm, not bootstrap by \u003ca href=\"https://github.com/zkochan\"\u003e\u003ccode\u003e@​zkochan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/249\"\u003epnpm/action-setup#249\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/pnpm/action-setup/compare/v6.0.5...v6.0.6\"\u003ehttps://github.com/pnpm/action-setup/compare/v6.0.5...v6.0.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/0e279bb959325dab635dd2c09392533439d90093\"\u003e\u003ccode\u003e0e279bb\u003c/code\u003e\u003c/a\u003e fix: update pnpm to 11.1.1 (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/248\"\u003e#248\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/3e835812ef01165f4f8ae08ade56da44427ed4e0\"\u003e\u003ccode\u003e3e83581\u003c/code\u003e\u003c/a\u003e fix: drop patchPnpmEnv so standalone+self-update works on Windows (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/258\"\u003e#258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/551b42e879e37e74d986effdd2a1647d2b02d464\"\u003e\u003ccode\u003e551b42e\u003c/code\u003e\u003c/a\u003e docs(README): fix \u003ccode\u003ecache_dependency_path\u003c/code\u003e type (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/257\"\u003e#257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/739bfe42ca9233c5e6aca07c1a25a9d34aca49b0\"\u003e\u003ccode\u003e739bfe4\u003c/code\u003e\u003c/a\u003e fix: self-update bootstrap to packageManager-pinned version (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/233\"\u003e#233\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/256\"\u003e#256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/f61705d907761b3b5209e83910fafd1fea50c5a1\"\u003e\u003ccode\u003ef61705d\u003c/code\u003e\u003c/a\u003e chore: add CODEOWNERS\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/7a5507b117647ab83e96e9db317ba2234056ebf3\"\u003e\u003ccode\u003e7a5507b\u003c/code\u003e\u003c/a\u003e fix: restore inputs from state in post (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/255\"\u003e#255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/1155470f3e5fb872accd4d104b8dfcda41f676ce\"\u003e\u003ccode\u003e1155470\u003c/code\u003e\u003c/a\u003e fix: honor devEngines.packageManager.onFail=error (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/252\"\u003e#252\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/254\"\u003e#254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/91ab88e2619ed1f46221f0ba42d1492c02baf788\"\u003e\u003ccode\u003e91ab88e\u003c/code\u003e\u003c/a\u003e fix: bin_dest output points to self-updated pnpm, not bootstrap (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/249\"\u003e#249\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/e578e19d19d31b011b841ba2aca34731a5f706a5\"\u003e\u003ccode\u003ee578e19\u003c/code\u003e\u003c/a\u003e fix: update pnpm to 11.0.4\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/pnpm/action-setup/compare/8912a9102ac27614460f54aedde9e1e7f9aec20d...0e279bb959325dab635dd2c09392533439d90093\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `anthropics/claude-code-action` from 1.0.111 to 1.0.140\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Workload Identity Federation (OIDC) authentication support by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1338\"\u003eanthropics/claude-code-action#1338\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.129\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/fefa07e9c665b7320f08c3b525980457f22f58aa...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `browser-actions/setup-firefox` from 1.7.1 to 1.7.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/browser-actions/setup-firefox/releases\"\u003ebrowser-actions/setup-firefox's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003esetup-firefox: v1.7.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.7.1...setup-firefox-v1.7.2\"\u003e1.7.2\u003c/a\u003e (2026-05-06)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003edrop 32-bit arch support (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/645\"\u003e#645\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/c5cfea27528d34cb3c7836264c24fb2942b483ff\"\u003ec5cfea2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupdate Node.js runtime to v24 LTS (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/642\"\u003e#642\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/4eb4a82c87af820d4b0060dd42369ad513ab247e\"\u003e4eb4a82\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupgrade dev dependencies (@actions/*, biome v2, vitest v4, \u003ccode\u003e@​vercel/ncc\u003c/code\u003e) (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/644\"\u003e#644\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/59e1322b5ddcfd76ee2ca70862e7cf22bf785260\"\u003e59e1322\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.7.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.7.1...setup-firefox-v1.7.2\"\u003e1.7.2\u003c/a\u003e (2026-05-06)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003edrop 32-bit arch support (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/645\"\u003e#645\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/c5cfea27528d34cb3c7836264c24fb2942b483ff\"\u003ec5cfea2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupdate Node.js runtime to v24 LTS (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/642\"\u003e#642\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/4eb4a82c87af820d4b0060dd42369ad513ab247e\"\u003e4eb4a82\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupgrade dev dependencies (@actions/*, biome v2, vitest v4, \u003ccode\u003e@​vercel/ncc\u003c/code\u003e) (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/644\"\u003e#644\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/59e1322b5ddcfd76ee2ca70862e7cf22bf785260\"\u003e59e1322\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/browser-actions/setup-firefox/blob/master/CHANGELOG.md\"\u003ebrowser-actions/setup-firefox's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.7.1...setup-firefox-v1.7.2\"\u003e1.7.2\u003c/a\u003e (2026-05-06)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003edrop 32-bit arch support (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/645\"\u003e#645\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/c5cfea27528d34cb3c7836264c24fb2942b483ff\"\u003ec5cfea2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupdate Node.js runtime to v24 LTS (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/642\"\u003e#642\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/4eb4a82c87af820d4b0060dd42369ad513ab247e\"\u003e4eb4a82\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupgrade dev dependencies (@actions/*, biome v2, vitest v4, \u003ccode\u003e@​vercel/ncc\u003c/code\u003e) (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/644\"\u003e#644\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/59e1322b5ddcfd76ee2ca70862e7cf22bf785260\"\u003e59e1322\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.7.0...setup-firefox-v1.7.1\"\u003e1.7.1\u003c/a\u003e (2026-02-21)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ebump node version (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/638\"\u003e#638\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/6671e17b21f1a2622c5501c2e8a786694ddf5a4c\"\u003e6671e17\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.6.0...setup-firefox-v1.7.0\"\u003e1.7.0\u003c/a\u003e (2025-07-27)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eSupport Linux ARM64 (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/637\"\u003e#637\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/c1a8cea110691bde64de6253c0bebfbc740e11ac\"\u003ec1a8cea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd .exe to firefox-path on Windows (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/635\"\u003e#635\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/6a1b4a4b1961b3705b75f7c78b70a56d51fc4c4c\"\u003e6a1b4a4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.5.4...setup-firefox-v1.6.0\"\u003e1.6.0\u003c/a\u003e (2025-07-13)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eSupport windows 11 arm (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/631\"\u003e#631\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/5db70482d10f7a9236fb5451388e81941932cb1f\"\u003e5db7048\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.5.3...setup-firefox-v1.5.4\"\u003e1.5.4\u003c/a\u003e (2025-01-25)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix an off-by-one error with bz2/xz download URLs (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/626\"\u003e#626\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/f7574dd7c71ff2cf094cdaa89735bdcb096d72e5\"\u003ef7574dd\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/625\"\u003e#625\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.5.2...setup-firefox-v1.5.3\"\u003e1.5.3\u003c/a\u003e (2025-01-19)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eCoping with compression change for linux download (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/623\"\u003e#623\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/063eed68fefb6e72be98fb0c0d2d106784c79634\"\u003e063eed6\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/0bc507ddf224827e3b1af68e014d5e42ab93e795\"\u003e\u003ccode\u003e0bc507d\u003c/code\u003e\u003c/a\u003e Release v1.7.2 at b2420b5fc5c9410c3bb4558ea29f202e52b4f41e\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/fcf821c621167805dd63a29662bd7cb5676c81a8...0bc507ddf224827e3b1af68e014d5e42ab93e795\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cypress-io/github-action` from 7.1.10 to 7.4.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/cypress-io/github-action/releases\"\u003ecypress-io/github-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev7.4.0\u003c/h2\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/cypress-io/github-action/compare/v7.3.0...v7.4.0\"\u003e7.4.0\u003c/a\u003e (2026-06-01)\u003c/h1\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e remove Node.js 25 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1781\"\u003e#1781\u003c/a\u003e) (\u003ca href=\"https://github.com/cypress-io/github-action/commit/948d67d3074f1bbb6379c8bdbb04e95d2f8e593f\"\u003e948d67d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev7.3.0\u003c/h2\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/cypress-io/github-action/compare/v7.2.0...v7.3.0\"\u003e7.3.0\u003c/a\u003e (2026-05-05)\u003c/h1\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd \u003ccode\u003eexpose\u003c/code\u003e input for Cypress.expose() API (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1749\"\u003e#1749\u003c/a\u003e) (\u003ca href=\"https://github.com/cypress-io/github-action/commit/dace029018fcdf86e0df89a31bc3cfa5b32570d8\"\u003edace029\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev7.2.0\u003c/h2\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/cypress-io/github-action/compare/v7.1.10...v7.2.0\"\u003e7.2.0\u003c/a\u003e (2026-05-04)\u003c/h1\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e remove Node.js 20 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1747\"\u003e#1747\u003c/a\u003e) (\u003ca href=\"https://github.com/cypress-io/github-action/commit/b7a7441d775af8f8b9d19945c10dd689a51dba68\"\u003eb7a7441\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md\"\u003ecypress-io/github-action's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eThis document gives an overview of changes to the Cypress GitHub JavaScript Action \u003ca href=\"https://github.com/cypress-io/github-action\"\u003ecypress-io/github-action\u003c/a\u003e.\u003c/p\u003e\n\u003cp\u003eSee \u003ca href=\"https://github.com/cypress-io/github-action/releases\"\u003eReleases\u003c/a\u003e for full details of changes.\u003c/p\u003e\n\u003ctable\u003e\n\u003cthead\u003e\n\u003ctr\u003e\n\u003cth\u003eVersion\u003c/th\u003e\n\u003cth\u003eChanges\u003c/th\u003e\n\u003c/tr\u003e\n\u003c/thead\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.4.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 25. End of support for Node.js 25.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.3.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003eexpose\u003c/code\u003e for \u003ca href=\"https://docs.cypress.io/api/cypress-api/expose\"\u003e\u003ccode\u003eCypress.expose()\u003c/code\u003e\u003c/a\u003e support\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.2.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 20. End of support for Node.js 20.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.1.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003epackage-manager-cache\u003c/code\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.0.0\u003c/td\u003e\n\u003ctd\u003eAction runs under Node.js 24 instead of Node.js 20\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.10.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 23. End of support for Node.js 23.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.9.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter validation for \u003ccode\u003ecommand\u003c/code\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.8.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 18. End of support for Node.js 18.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.7.10\u003c/td\u003e\n\u003ctd\u003eExamples updated to Cypress 14\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.7.9\u003c/td\u003e\n\u003ctd\u003eMigrate to \u003ccode\u003e@actions/cache@4.0.0\u003c/code\u003e for continued access to GitHub Actions caching services\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.7.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 21. End of support for Node.js 21.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.6.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003esummary-title\u003c/code\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.5.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 16. End of support for Node.js 16.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.4.0\u003c/td\u003e\n\u003ctd\u003eAction adds PR number and URL if available when recording\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.3.0\u003c/td\u003e\n\u003ctd\u003ev6 is recommended action version\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.2.0\u003c/td\u003e\n\u003ctd\u003eExamples updated to Cypress 13\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.1.0\u003c/td\u003e\n\u003ctd\u003eExamples for Cypress 9 archived in action's \u003ca href=\"https://github.com/cypress-io/github-action/tree/v5\"\u003ev5\u003c/a\u003e branch\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.0.0\u003c/td\u003e\n\u003ctd\u003eAction runs under Node.js 20 instead of Node.js 16\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.8.1\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 19. End of support for Node.js 19\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.8.0\u003c/td\u003e\n\u003ctd\u003eAdd GitHub step output \u003ccode\u003eresultsUrl\u003c/code\u003e. Deprecate \u003ccode\u003edashboardUrl\u003c/code\u003e.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.7.0\u003c/td\u003e\n\u003ctd\u003eAdd basic Yarn Modern Plug'n'Play support\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.6.2\u003c/td\u003e\n\u003ctd\u003eExamples add Node.js 20. End of support and removal of Node.js 14 examples.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.6.0\u003c/td\u003e\n\u003ctd\u003eAdd check for lockfile presence\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.5.0\u003c/td\u003e\n\u003ctd\u003eExamples add Yarn Modern\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.4.0\u003c/td\u003e\n\u003ctd\u003eExamples add Yarn Classic\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.3.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003epublish-summary\u003c/code\u003e (default \u003ccode\u003etrue\u003c/code\u003e)\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.2.0\u003c/td\u003e\n\u003ctd\u003eExamples add Node.js 19\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.1.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003eauto-cancel-after-failures\u003c/code\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.0.0\u003c/td\u003e\n\u003ctd\u003eExamples add Node.js 18 and remove Node.js 12\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev4.2.2\u003c/td\u003e\n\u003ctd\u003eDependency on GitHub \u003ccode\u003eset-output\u003c/code\u003e workflow command removed\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev4.2.0\u003c/td\u003e\n\u003ctd\u003eSupport for \u003ccode\u003epnpm\u003c/code\u003e added\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev4.0.0\u003c/td\u003e\n\u003ctd\u003eSupport for Cypress 10 and later versions added\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev3\u003c/td\u003e\n\u003ctd\u003eAction runs under Node.js 16 instead of Node.js 12\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev2\u003c/td\u003e\n\u003ctd\u003eCypress runs using the \u003ca href=\"https://on.cypress.io/module-api\"\u003eModule API\u003c/a\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev1\u003c/td\u003e\n\u003ctd\u003e\u003cem\u003eThis version is no longer runnable in GitHub due to security changes.\u003c/em\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/tbody\u003e\n\u003c/table\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/948d67d3074f1bbb6379c8bdbb04e95d2f8e593f\"\u003e\u003ccode\u003e948d67d\u003c/code\u003e\u003c/a\u003e feat(deps): remove Node.js 25 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1781\"\u003e#1781\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/2b7e08ae8c9b661a771e3dc864829fb8693cb1af\"\u003e\u003ccode\u003e2b7e08a\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency node to v24.16.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1777\"\u003e#1777\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/69a0c7c0a5b2c0a81167f0c738897ef3f72d9693\"\u003e\u003ccode\u003e69a0c7c\u003c/code\u003e\u003c/a\u003e test: complete cypress@15.16.0 update (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1778\"\u003e#1778\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/e487d96c701316778ffaea5fccafca4d1ab58f41\"\u003e\u003ccode\u003ee487d96\u003c/code\u003e\u003c/a\u003e chore(deps): update node.js to v24.16.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1770\"\u003e#1770\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/5cfba340db24c57a561fe6f3ba8883deffc72d82\"\u003e\u003ccode\u003e5cfba34\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency webpack to ^5.107.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1771\"\u003e#1771\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/65ccb9f02c0b9dc4579b4a11398bfd779f4fc377\"\u003e\u003ccode\u003e65ccb9f\u003c/code\u003e\u003c/a\u003e chore: add minimum release age and vulnerability alerts to renovate config (#...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/5130fef9c331a8525857c7c8eb41a70f366f4a7b\"\u003e\u003ccode\u003e5130fef\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency cypress to v15.16.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1773\"\u003e#1773\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/e910707b25409dff74381de369cb753872ec2016\"\u003e\u003ccode\u003ee910707\u003c/code\u003e\u003c/a\u003e test: exclude Cypress from Yarn Modern npmMinimalAgeGate (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1774\"\u003e#1774\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/984bd80d6ee014c17e5503f1e6924ce8be94e57e\"\u003e\u003ccode\u003e984bd80\u003c/code\u003e\u003c/a\u003e chore(deps): update yarn to v4.15.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1768\"\u003e#1768\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/1c3bb666393340ff658f6dca68f689592d921dfa\"\u003e\u003ccode\u003e1c3bb66\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency vite to ^8.0.14 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1769\"\u003e#1769\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/cypress-io/github-action/compare/c495c3ddffba403ba11be95fffb67e25203b3799...948d67d3074f1bbb6379c8bdbb04e95d2f8e593f\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e\n\n\u003c!-- CURSOR_SUMMARY --\u003e\n---\n\n\u003e [!NOTE]\n\u003e **Low Risk**\n\u003e Routine dependency pin updates only; workflow behavior and secrets usage are unchanged, though E2E and Claude jobs may pick up upstream action fixes or regressions.\n\u003e \n\u003e **Overview**\n\u003e Bumps pinned third-party GitHub Actions across CI workflows with **no changes to job logic, permissions, or commands**.\n\u003e \n\u003e **`actions/checkout`** moves **6.0.2 → 6.0.3** and **`pnpm/action-setup`** **6.0.5 → 6.0.8** in cache refresh, Claude, DB backup, ingest, lint, unit tests, and E2E workflows. **`anthropics/claude-code-action`** **1.0.111 → 1.0.140** updates both the implement and review jobs in `claude.yml`. **`tests-e2e.yml`** also bumps **`browser-actions/setup-firefox`** **1.7.1 → 1.7.2** and **`cypress-io/github-action`** **7.1.10 → 7.4.0** for the Firefox matrix and integration test step.\n\u003e \n\u003e \u003csup\u003eReviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 31b7fcac46081c0b91138e8e523578c0b2e358bb. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).\u003c/sup\u003e\n\u003c!-- /CURSOR_SUMMARY --\u003e","html_url":"https://github.com/SemiAnalysisAI/InferenceX-app/pull/428","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/SemiAnalysisAI%2FInferenceX-app/issues/428","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/428/packages"},{"uuid":"4609193615","node_id":"PR_kwDOR9SdIs7jtpBd","number":472,"state":"open","title":"chore(deps): bump the actions group with 2 updates","user":"dependabot[bot]","labels":["security","dependencies"],"assignees":[],"locked":false,"comments_count":8,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T00:17:35.000Z","updated_at":"2026-06-08T01:23:14.946Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"actions","update_count":2,"packages":[{"name":"actions/checkout","old_version":"4","new_version":"6","repository_url":"https://github.com/actions/checkout"},{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action).\n\nUpdates `actions/checkout` from 4 to 6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/releases\"\u003eactions/checkout's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate README to include Node.js 24 support details and requirements by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2248\"\u003eactions/checkout#2248\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePersist creds to a separate file by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2286\"\u003eactions/checkout#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev6-beta by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2298\"\u003eactions/checkout#2298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate readme/changelog for v6 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2311\"\u003eactions/checkout#2311\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v5.0.0...v6.0.0\"\u003ehttps://github.com/actions/checkout/compare/v5.0.0...v6.0.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev6-beta\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eUpdated persist-credentials to store the credentials under \u003ccode\u003e$RUNNER_TEMP\u003c/code\u003e instead of directly in the local git config.\u003c/p\u003e\n\u003cp\u003eThis requires a minimum Actions Runner version of \u003ca href=\"https://github.com/actions/runner/releases/tag/v2.329.0\"\u003ev2.329.0\u003c/a\u003e to access the persisted credentials for \u003ca href=\"https://docs.github.com/en/actions/tutorials/use-containerized-services/create-a-docker-container-action\"\u003eDocker container action\u003c/a\u003e scenarios.\u003c/p\u003e\n\u003ch2\u003ev5.0.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v5 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2301\"\u003eactions/checkout#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v5...v5.0.1\"\u003ehttps://github.com/actions/checkout/compare/v5...v5.0.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.0.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate actions checkout to use node 24 by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2226\"\u003eactions/checkout#2226\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePrepare v5.0.0 release by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2238\"\u003eactions/checkout#2238\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e⚠️ Minimum Compatible Runner Version\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003ev2.327.1\u003c/strong\u003e\u003cbr /\u003e\n\u003ca href=\"https://github.com/actions/runner/releases/tag/v2.327.1\"\u003eRelease Notes\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eMake sure your runner is updated to this version or newer to use this release.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v4...v5.0.0\"\u003ehttps://github.com/actions/checkout/compare/v4...v5.0.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev4.3.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v4 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2305\"\u003eactions/checkout#2305\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v4...v4.3.1\"\u003ehttps://github.com/actions/checkout/compare/v4...v4.3.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev4.3.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs: update README.md by \u003ca href=\"https://github.com/motss\"\u003e\u003ccode\u003e@​motss\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1971\"\u003eactions/checkout#1971\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd internal repos for checking out multiple repositories by \u003ca href=\"https://github.com/mouismail\"\u003e\u003ccode\u003e@​mouismail\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1977\"\u003eactions/checkout#1977\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDocumentation update - add recommended permissions to Readme by \u003ca href=\"https://github.com/benwells\"\u003e\u003ccode\u003e@​benwells\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2043\"\u003eactions/checkout#2043\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003e\u003ccode\u003edf4cb1c\u003c/code\u003e\u003c/a\u003e Update changelog for v6.0.3 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2446\"\u003e#2446\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/1cce3390c2bfda521930d01229c073c7ff920824\"\u003e\u003ccode\u003e1cce339\u003c/code\u003e\u003c/a\u003e Fix checkout init for SHA-256 repositories (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2439\"\u003e#2439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/900f2210b1d28bbbd0bd22d17926b9e224e8f231\"\u003e\u003ccode\u003e900f221\u003c/code\u003e\u003c/a\u003e fix: expand merge commit SHA regex and add SHA-256 test cases (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2414\"\u003e#2414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/0c366fd6a839edf440554fa01a7085ccba70ac98\"\u003e\u003ccode\u003e0c366fd\u003c/code\u003e\u003c/a\u003e Update changelog (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2357\"\u003e#2357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/de0fac2e4500dabe0009e67214ff5f5447ce83dd\"\u003e\u003ccode\u003ede0fac2\u003c/code\u003e\u003c/a\u003e Fix tag handling: preserve annotations and explicit fetch-tags (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2356\"\u003e#2356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/064fe7f3312418007dea2b49a19844a9ee378f49\"\u003e\u003ccode\u003e064fe7f\u003c/code\u003e\u003c/a\u003e Add orchestration_id to git user-agent when ACTIONS_ORCHESTRATION_ID is set (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/8e8c483db84b4bee98b60c0593521ed34d9990e8\"\u003e\u003ccode\u003e8e8c483\u003c/code\u003e\u003c/a\u003e Clarify v6 README (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/033fa0dc0b82693d8986f1016a0ec2c5e7d9cbb1\"\u003e\u003ccode\u003e033fa0d\u003c/code\u003e\u003c/a\u003e Add worktree support for persist-credentials includeIf (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2327\"\u003e#2327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/c2d88d3ecc89a9ef08eebf45d9637801dcee7eb5\"\u003e\u003ccode\u003ec2d88d3\u003c/code\u003e\u003c/a\u003e Update all references from v5 and v4 to v6 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2314\"\u003e#2314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/1af3b93b6815bc44a9784bd300feb67ff0d1eeb3\"\u003e\u003ccode\u003e1af3b93\u003c/code\u003e\u003c/a\u003e update readme/changelog for v6 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2311\"\u003e#2311\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/actions/checkout/compare/v4...v6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `anthropics/claude-code-action` from 1.0.133 to 1.0.140\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/petry-projects/.github-private/pull/472","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/petry-projects%2F.github-private/issues/472","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/472/packages"},{"uuid":"4609154354","node_id":"PR_kwDOP4Y2n87jtg4X","number":314,"state":"open","title":"chore(ci): Bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T00:06:19.000Z","updated_at":"2026-06-08T00:08:30.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(ci): Bump","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1.0.133...v1.0.140\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/jon890/fos-accountbook-frontend/pull/314","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jon890%2Ffos-accountbook-frontend/issues/314","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/314/packages"}],"issue_packages":[{"old_version":"1.0.92","new_version":"1.0.142","update_type":"patch","path":null,"pr_created_at":"2026-06-16T01:13:52.000Z","version_change":"1.0.92 → 1.0.142","issue":{"uuid":"4670162667","node_id":"PR_kwDOSE1rC87mzFHO","number":50,"state":"open","title":"build(deps): bump anthropics/claude-code-action from 1.0.92 to 1.0.142","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-16T01:13:52.000Z","updated_at":"2026-06-16T01:13:53.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.92","new_version":"1.0.142","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.92 to 1.0.142.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.142\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.141\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003e\u003ccode\u003e11ba604\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.170 and Agent SDK to 0.3.170\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/593d7a5c4e0073569f74772c2b7b64c30ec14707\"\u003e\u003ccode\u003e593d7a5\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.169 and Agent SDK to 0.3.169\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/657fb7c9c986158a19624b357bcbc8c6deb83598...11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.92\u0026new-version=1.0.142)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/actions-marketplace-validations/ncaq_kyosei-action/pull/50","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/actions-marketplace-validations%2Fncaq_kyosei-action/issues/50","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/50/packages"}},{"old_version":"1.0.107","new_version":"1.0.148","update_type":"patch","path":null,"pr_created_at":"2026-06-15T18:15:48.000Z","version_change":"1.0.107 → 1.0.148","issue":{"uuid":"4667710080","node_id":"PR_kwDOR9Os887mq9CR","number":45,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.107 to 1.0.148","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-15T18:15:48.000Z","updated_at":"2026-06-15T18:15:49.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.107","new_version":"1.0.148","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.107 to 1.0.148.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.148\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.147\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd pr-stamp-sweep review workflow by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1409\"\u003eanthropics/claude-code-action#1409\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.146\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: add unit tests for parseGitHubContext and context type guards by \u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs(faq): correct rebase FAQ to match actual behavior by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: fall back to inherited env for auth when inputs are empty by \u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: break SDK iterator after result message to prevent hang in pull_request runs by \u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin setup-bun binary for post-steps by \u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: clear stale claude-prompts dir before each write by \u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eInclude labels in formatContext() output for issues and PRs by \u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(sanitizer): match attribute quotes by type to avoid mangling content by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1371\"\u003eanthropics/claude-code-action#1371\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: fix execution file parsing example by \u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(image-downloader): detect image type from magic bytes, not URL extension by \u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.145\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.144\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d5726de019ec4498aa667642bc3a80fca83aa102\"\u003e\u003ccode\u003ed5726de\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/56fa348258fbcb1aeb8d3954d5799b5991098481\"\u003e\u003ccode\u003e56fa348\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/82d95d45afccaedf8edb2a72d9f31f8f83f0e3c0\"\u003e\u003ccode\u003e82d95d4\u003c/code\u003e\u003c/a\u003e Add pr-stamp-sweep review workflow (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0cb4f3e5e764d2e00407d29b6bf0aa9df0976d88\"\u003e\u003ccode\u003e0cb4f3e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/8551f4b0aa500ecf8d089328f7e4855ec4f88b97\"\u003e\u003ccode\u003e8551f4b\u003c/code\u003e\u003c/a\u003e fix(image-downloader): detect image type from magic bytes (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1396\"\u003e#1396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eba921ff6fe46ae228080985856114843726aa23\"\u003e\u003ccode\u003eeba921f\u003c/code\u003e\u003c/a\u003e docs: fix execution file parsing example (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1297\"\u003e#1297\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36617bd48be5f24c2d18eea12367a58fefded956\"\u003e\u003ccode\u003e36617bd\u003c/code\u003e\u003c/a\u003e fix(sanitizer): match attribute quotes by type to avoid mangling content (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1371\"\u003e#1371\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/24b915648e7331d5599ee6a656207a7d070b35c5\"\u003e\u003ccode\u003e24b9156\u003c/code\u003e\u003c/a\u003e Include labels in formatContext() output for issues and PRs (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9441a7fe224ee09e3609eae6d1bb862443f72fad\"\u003e\u003ccode\u003e9441a7f\u003c/code\u003e\u003c/a\u003e fix: clear stale claude-prompts dir before each write (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1288\"\u003e#1288\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b37125513918a14401569b74d3cc359c7c360dc1\"\u003e\u003ccode\u003eb371255\u003c/code\u003e\u003c/a\u003e pin setup-bun path for post steps (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1365\"\u003e#1365\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/567fe954a4527e81f132d87d1bdbcc94f7737434...d5726de019ec4498aa667642bc3a80fca83aa102\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.107\u0026new-version=1.0.148)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/FournineCS/turul-app/pull/45","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/FournineCS%2Fturul-app/issues/45","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/45/packages"}},{"old_version":"1.0.140","new_version":"1.0.148","update_type":"patch","path":null,"pr_created_at":"2026-06-15T06:09:30.000Z","version_change":"1.0.140 → 1.0.148","issue":{"uuid":"4662503713","node_id":"PR_kwDOLAxHPM7mZtEY","number":174,"state":"closed","title":"chore(deps):(deps): bump anthropics/claude-code-action from 1.0.140 to 1.0.148","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-15T06:10:05.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-15T06:09:30.000Z","updated_at":"2026-06-15T06:10:06.000Z","time_to_close":35,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps):(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.140","new_version":"1.0.148","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.140 to 1.0.148.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.148\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.147\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd pr-stamp-sweep review workflow by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1409\"\u003eanthropics/claude-code-action#1409\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.146\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: add unit tests for parseGitHubContext and context type guards by \u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs(faq): correct rebase FAQ to match actual behavior by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: fall back to inherited env for auth when inputs are empty by \u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: break SDK iterator after result message to prevent hang in pull_request runs by \u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin setup-bun binary for post-steps by \u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: clear stale claude-prompts dir before each write by \u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eInclude labels in formatContext() output for issues and PRs by \u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(sanitizer): match attribute quotes by type to avoid mangling content by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1371\"\u003eanthropics/claude-code-action#1371\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: fix execution file parsing example by \u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(image-downloader): detect image type from magic bytes, not URL extension by \u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.145\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.144\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d5726de019ec4498aa667642bc3a80fca83aa102\"\u003e\u003ccode\u003ed5726de\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/56fa348258fbcb1aeb8d3954d5799b5991098481\"\u003e\u003ccode\u003e56fa348\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/82d95d45afccaedf8edb2a72d9f31f8f83f0e3c0\"\u003e\u003ccode\u003e82d95d4\u003c/code\u003e\u003c/a\u003e Add pr-stamp-sweep review workflow (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0cb4f3e5e764d2e00407d29b6bf0aa9df0976d88\"\u003e\u003ccode\u003e0cb4f3e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/8551f4b0aa500ecf8d089328f7e4855ec4f88b97\"\u003e\u003ccode\u003e8551f4b\u003c/code\u003e\u003c/a\u003e fix(image-downloader): detect image type from magic bytes (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1396\"\u003e#1396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eba921ff6fe46ae228080985856114843726aa23\"\u003e\u003ccode\u003eeba921f\u003c/code\u003e\u003c/a\u003e docs: fix execution file parsing example (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1297\"\u003e#1297\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36617bd48be5f24c2d18eea12367a58fefded956\"\u003e\u003ccode\u003e36617bd\u003c/code\u003e\u003c/a\u003e fix(sanitizer): match attribute quotes by type to avoid mangling content (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1371\"\u003e#1371\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/24b915648e7331d5599ee6a656207a7d070b35c5\"\u003e\u003ccode\u003e24b9156\u003c/code\u003e\u003c/a\u003e Include labels in formatContext() output for issues and PRs (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9441a7fe224ee09e3609eae6d1bb862443f72fad\"\u003e\u003ccode\u003e9441a7f\u003c/code\u003e\u003c/a\u003e fix: clear stale claude-prompts dir before each write (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1288\"\u003e#1288\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b37125513918a14401569b74d3cc359c7c360dc1\"\u003e\u003ccode\u003eb371255\u003c/code\u003e\u003c/a\u003e pin setup-bun path for post steps (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1365\"\u003e#1365\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1...d5726de019ec4498aa667642bc3a80fca83aa102\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.140\u0026new-version=1.0.148)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/navigaite/.github/pull/174","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/navigaite%2F.github/issues/174","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/174/packages"}},{"old_version":"1.0.140","new_version":"1.0.148","update_type":"patch","path":null,"pr_created_at":"2026-06-15T01:34:53.000Z","version_change":"1.0.140 → 1.0.148","issue":{"uuid":"4661388353","node_id":"PR_kwDOBS_GQM7mWIt2","number":366,"state":"open","title":"ci(deps): bump anthropics/claude-code-action from 1.0.140 to 1.0.148","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-15T01:34:53.000Z","updated_at":"2026-06-15T01:34:53.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.140","new_version":"1.0.148","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.140 to 1.0.148.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.148\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.147\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd pr-stamp-sweep review workflow by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1409\"\u003eanthropics/claude-code-action#1409\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.146\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: add unit tests for parseGitHubContext and context type guards by \u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs(faq): correct rebase FAQ to match actual behavior by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: fall back to inherited env for auth when inputs are empty by \u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: break SDK iterator after result message to prevent hang in pull_request runs by \u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin setup-bun binary for post-steps by \u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: clear stale claude-prompts dir before each write by \u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eInclude labels in formatContext() output for issues and PRs by \u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(sanitizer): match attribute quotes by type to avoid mangling content by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1371\"\u003eanthropics/claude-code-action#1371\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: fix execution file parsing example by \u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(image-downloader): detect image type from magic bytes, not URL extension by \u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.145\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.144\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d5726de019ec4498aa667642bc3a80fca83aa102\"\u003e\u003ccode\u003ed5726de\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/56fa348258fbcb1aeb8d3954d5799b5991098481\"\u003e\u003ccode\u003e56fa348\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/82d95d45afccaedf8edb2a72d9f31f8f83f0e3c0\"\u003e\u003ccode\u003e82d95d4\u003c/code\u003e\u003c/a\u003e Add pr-stamp-sweep review workflow (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0cb4f3e5e764d2e00407d29b6bf0aa9df0976d88\"\u003e\u003ccode\u003e0cb4f3e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/8551f4b0aa500ecf8d089328f7e4855ec4f88b97\"\u003e\u003ccode\u003e8551f4b\u003c/code\u003e\u003c/a\u003e fix(image-downloader): detect image type from magic bytes (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1396\"\u003e#1396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eba921ff6fe46ae228080985856114843726aa23\"\u003e\u003ccode\u003eeba921f\u003c/code\u003e\u003c/a\u003e docs: fix execution file parsing example (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1297\"\u003e#1297\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36617bd48be5f24c2d18eea12367a58fefded956\"\u003e\u003ccode\u003e36617bd\u003c/code\u003e\u003c/a\u003e fix(sanitizer): match attribute quotes by type to avoid mangling content (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1371\"\u003e#1371\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/24b915648e7331d5599ee6a656207a7d070b35c5\"\u003e\u003ccode\u003e24b9156\u003c/code\u003e\u003c/a\u003e Include labels in formatContext() output for issues and PRs (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9441a7fe224ee09e3609eae6d1bb862443f72fad\"\u003e\u003ccode\u003e9441a7f\u003c/code\u003e\u003c/a\u003e fix: clear stale claude-prompts dir before each write (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1288\"\u003e#1288\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b37125513918a14401569b74d3cc359c7c360dc1\"\u003e\u003ccode\u003eb371255\u003c/code\u003e\u003c/a\u003e pin setup-bun path for post steps (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1365\"\u003e#1365\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1...d5726de019ec4498aa667642bc3a80fca83aa102\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.140\u0026new-version=1.0.148)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/iplweb/bpp/pull/366","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/iplweb%2Fbpp/issues/366","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/366/packages"}},{"old_version":"1.0.133","new_version":"1.0.148","update_type":"patch","path":null,"pr_created_at":"2026-06-15T00:43:57.000Z","version_change":"1.0.133 → 1.0.148","issue":{"uuid":"4661218417","node_id":"PR_kwDOHK55OM7mVn2k","number":8114,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.148","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-15T00:43:57.000Z","updated_at":"2026-06-15T00:59:50.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.148","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.148.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.148\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.148\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.147\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd pr-stamp-sweep review workflow by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1409\"\u003eanthropics/claude-code-action#1409\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.147\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.146\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: add unit tests for parseGitHubContext and context type guards by \u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs(faq): correct rebase FAQ to match actual behavior by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: fall back to inherited env for auth when inputs are empty by \u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: break SDK iterator after result message to prevent hang in pull_request runs by \u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin setup-bun binary for post-steps by \u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: clear stale claude-prompts dir before each write by \u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eInclude labels in formatContext() output for issues and PRs by \u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(sanitizer): match attribute quotes by type to avoid mangling content by \u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1371\"\u003eanthropics/claude-code-action#1371\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: fix execution file parsing example by \u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(image-downloader): detect image type from magic bytes, not URL extension by \u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mateuscmtropical\"\u003e\u003ccode\u003e@​mateuscmtropical\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1404\"\u003eanthropics/claude-code-action#1404\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bymle\"\u003e\u003ccode\u003e@​bymle\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1370\"\u003eanthropics/claude-code-action#1370\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kirsanium\"\u003e\u003ccode\u003e@​kirsanium\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1342\"\u003eanthropics/claude-code-action#1342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/scobbe\"\u003e\u003ccode\u003e@​scobbe\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1339\"\u003eanthropics/claude-code-action#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kiwigitops\"\u003e\u003ccode\u003e@​kiwigitops\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1365\"\u003eanthropics/claude-code-action#1365\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kyungilpark\"\u003e\u003ccode\u003e@​kyungilpark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1288\"\u003eanthropics/claude-code-action#1288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/joshpayne-joby\"\u003e\u003ccode\u003e@​joshpayne-joby\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1298\"\u003eanthropics/claude-code-action#1298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/looooown2006\"\u003e\u003ccode\u003e@​looooown2006\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1297\"\u003eanthropics/claude-code-action#1297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmespresso\"\u003e\u003ccode\u003e@​pmespresso\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1396\"\u003eanthropics/claude-code-action#1396\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.146\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.145\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.145\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.144\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.144\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d5726de019ec4498aa667642bc3a80fca83aa102\"\u003e\u003ccode\u003ed5726de\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/56fa348258fbcb1aeb8d3954d5799b5991098481\"\u003e\u003ccode\u003e56fa348\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/82d95d45afccaedf8edb2a72d9f31f8f83f0e3c0\"\u003e\u003ccode\u003e82d95d4\u003c/code\u003e\u003c/a\u003e Add pr-stamp-sweep review workflow (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0cb4f3e5e764d2e00407d29b6bf0aa9df0976d88\"\u003e\u003ccode\u003e0cb4f3e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/8551f4b0aa500ecf8d089328f7e4855ec4f88b97\"\u003e\u003ccode\u003e8551f4b\u003c/code\u003e\u003c/a\u003e fix(image-downloader): detect image type from magic bytes (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1396\"\u003e#1396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eba921ff6fe46ae228080985856114843726aa23\"\u003e\u003ccode\u003eeba921f\u003c/code\u003e\u003c/a\u003e docs: fix execution file parsing example (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1297\"\u003e#1297\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36617bd48be5f24c2d18eea12367a58fefded956\"\u003e\u003ccode\u003e36617bd\u003c/code\u003e\u003c/a\u003e fix(sanitizer): match attribute quotes by type to avoid mangling content (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1371\"\u003e#1371\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/24b915648e7331d5599ee6a656207a7d070b35c5\"\u003e\u003ccode\u003e24b9156\u003c/code\u003e\u003c/a\u003e Include labels in formatContext() output for issues and PRs (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9441a7fe224ee09e3609eae6d1bb862443f72fad\"\u003e\u003ccode\u003e9441a7f\u003c/code\u003e\u003c/a\u003e fix: clear stale claude-prompts dir before each write (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1288\"\u003e#1288\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b37125513918a14401569b74d3cc359c7c360dc1\"\u003e\u003ccode\u003eb371255\u003c/code\u003e\u003c/a\u003e pin setup-bun path for post steps (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1365\"\u003e#1365\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...d5726de019ec4498aa667642bc3a80fca83aa102\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.148)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/safe-global/safe-wallet-monorepo/pull/8114","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/safe-global%2Fsafe-wallet-monorepo/issues/8114","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/8114/packages"}},{"old_version":"1.0.119","new_version":"1.0.143","update_type":"patch","path":null,"pr_created_at":"2026-06-10T22:10:14.000Z","version_change":"1.0.119 → 1.0.143","issue":{"uuid":"4635370555","node_id":"PR_kwDON2yr3c7lD6C4","number":4505,"state":"closed","title":"chore(deps): bump anthropics/claude-code-action from 1.0.119 to 1.0.143","user":"dependabot[bot]","labels":["dependencies","github-actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-10T22:35:39.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-10T22:10:14.000Z","updated_at":"2026-06-10T22:35:44.000Z","time_to_close":1525,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.119","new_version":"1.0.143","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.119 to 1.0.143.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.143\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eDrop --tsconfig-override from Bun invocations to avoid runtime crash by \u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chsmc-ant\"\u003e\u003ccode\u003e@​chsmc-ant\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1315\"\u003eanthropics/claude-code-action#1315\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.143\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.142\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.141\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/eee73e2ae5399c561de4ff038aa7b36a7aa991a7\"\u003e\u003ccode\u003eeee73e2\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.172 and Agent SDK to 0.3.172\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/232c9a15f49822c165d462e7f0a3aa9287ed2a60\"\u003e\u003ccode\u003e232c9a1\u003c/code\u003e\u003c/a\u003e Drop --tsconfig-override from Bun invocations to avoid runtime crash (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1315\"\u003e#1315\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003e\u003ccode\u003e11ba604\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.170 and Agent SDK to 0.3.170\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/593d7a5c4e0073569f74772c2b7b64c30ec14707\"\u003e\u003ccode\u003e593d7a5\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.169 and Agent SDK to 0.3.169\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/476e359e6203e73dad705c8b322e333fabbd7416...eee73e2ae5399c561de4ff038aa7b36a7aa991a7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.119\u0026new-version=1.0.143)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/LearningCircuit/local-deep-research/pull/4505","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/LearningCircuit%2Flocal-deep-research/issues/4505","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4505/packages"}},{"old_version":"1.0.133","new_version":"1.0.142","update_type":"patch","path":null,"pr_created_at":"2026-06-10T02:21:26.000Z","version_change":"1.0.133 → 1.0.142","issue":{"uuid":"4627342361","node_id":"PR_kwDOR-VHWc7kpkqN","number":55,"state":"open","title":"chore(deps): bump the actions-minor-and-patch group with 3 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-10T02:21:26.000Z","updated_at":"2026-06-10T02:21:58.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"actions-minor-and-patch","update_count":3,"packages":[{"name":"aws-actions/configure-aws-credentials","old_version":"6.1.1","new_version":"6.2.0","repository_url":"https://github.com/aws-actions/configure-aws-credentials"},{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.142","repository_url":"https://github.com/anthropics/claude-code-action"},{"name":"github/codeql-action","old_version":"4.36.0","new_version":"4.36.2","repository_url":"https://github.com/github/codeql-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps the actions-minor-and-patch group with 3 updates: [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials), [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) and [github/codeql-action](https://github.com/github/codeql-action).\n\nUpdates `aws-actions/configure-aws-credentials` from 6.1.1 to 6.2.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/releases\"\u003eaws-actions/configure-aws-credentials's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.2.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.3...v6.2.0\"\u003e6.2.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd additional session tags by default (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1775\"\u003e#1775\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e0ba7685077379a14a82d01fefd511490344ebfc\"\u003ee0ba768\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd more retry logic and better logging (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1764\"\u003e#1764\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/540d0c13aedb8d55501d220bd2f0b3cdedfe84e8\"\u003e540d0c1\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd regex validation to role-session-name (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1765\"\u003e#1765\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e35449909c6ede5083a48ba4b8bbfaaa1cf09ba1\"\u003ee354499\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAllow custom session tags to be passed when assuming a role (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1759\"\u003e#1759\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/61f50f630f383628add73c1eab3f1935ba07da2b\"\u003e61f50f6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose run id in STS client user-agent (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1774\"\u003e#1774\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/29d1be30273e7ef371d59fccf6ec54572c64ec89\"\u003e29d1be3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esupport custom STS endpoints (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1762\"\u003e#1762\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/8d52d05d7a4521fa52b39de50cb6114b12e5c332\"\u003e8d52d05\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eskip credential check on output-env-credentials: false (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1778\"\u003e#1778\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/58e7c47adf77846879008deadfeeef8a6969fe6c\"\u003e58e7c47\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eassumeRole failing from session tag size too large (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1808\"\u003e#1808\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/d6f5dc331b44474b19a52caaf85fa4d637b13c8e\"\u003ed6f5dc3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.1.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.2...v6.1.3\"\u003e6.1.3\u003c/a\u003e (2026-05-27)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: allow kubelet token symlink in \u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/pull/1805\"\u003eaws-actions/configure-aws-credentials#1805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.1.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.1...v6.1.2\"\u003e6.1.2\u003c/a\u003e (2026-05-26)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadditional filesystem checks (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1799\"\u003e#1799\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/c39f282697aca8a78c522ecf1f7da9899a31432c\"\u003ec39f282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md\"\u003eaws-actions/configure-aws-credentials's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file. See \u003ca href=\"https://github.com/conventional-changelog/standard-version\"\u003estandard-version\u003c/a\u003e for commit guidelines.\u003c/p\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.3...v6.2.0\"\u003e6.2.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd additional session tags by default (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1775\"\u003e#1775\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e0ba7685077379a14a82d01fefd511490344ebfc\"\u003ee0ba768\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd more retry logic and better logging (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1764\"\u003e#1764\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/540d0c13aedb8d55501d220bd2f0b3cdedfe84e8\"\u003e540d0c1\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd regex validation to role-session-name (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1765\"\u003e#1765\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e35449909c6ede5083a48ba4b8bbfaaa1cf09ba1\"\u003ee354499\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAllow custom session tags to be passed when assuming a role (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1759\"\u003e#1759\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/61f50f630f383628add73c1eab3f1935ba07da2b\"\u003e61f50f6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose run id in STS client user-agent (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1774\"\u003e#1774\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/29d1be30273e7ef371d59fccf6ec54572c64ec89\"\u003e29d1be3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esupport custom STS endpoints (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1762\"\u003e#1762\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/8d52d05d7a4521fa52b39de50cb6114b12e5c332\"\u003e8d52d05\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eskip credential check on output-env-credentials: false (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1778\"\u003e#1778\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/58e7c47adf77846879008deadfeeef8a6969fe6c\"\u003e58e7c47\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eassumeRole failing from session tag size too large (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1808\"\u003e#1808\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/d6f5dc331b44474b19a52caaf85fa4d637b13c8e\"\u003ed6f5dc3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.2...v6.1.3\"\u003e6.1.3\u003c/a\u003e (2026-05-28)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: allow kubelet token symlink in \u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1805\"\u003e#1805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.1...v6.1.2\"\u003e6.1.2\u003c/a\u003e (2026-05-26)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadditional filesystem checks (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1799\"\u003e#1799\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/c39f282697aca8a78c522ecf1f7da9899a31432c\"\u003ec39f282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.1.0...v6.1.1\"\u003e6.1.1\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eMiscellaneous Chores\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003evarious dependency updates\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v6.0.0...v6.1.0\"\u003e6.1.0\u003c/a\u003e (2026-04-06)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd skip cleanup option (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1716\"\u003e#1716\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/11b1c58b24724e66aa52a847862a0c1b0c4b0c7b\"\u003e11b1c58\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1545\"\u003e#1545\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport usage of AWS Profiles (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1696\"\u003e#1696\u003c/a\u003e) (\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/a7f0c828ac76e0d049e34c920172c60f579f9eb3\"\u003ea7f0c82\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/v5.1.1...v6.0.0\"\u003e6.0.0\u003c/a\u003e (2026-02-04)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/e7f100cf4c008499ea8adda475de1042d6975c7b\"\u003e\u003ccode\u003ee7f100c\u003c/code\u003e\u003c/a\u003e chore(main): release 6.2.0 (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1806\"\u003e#1806\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/bbbffeab006c826c4fef54517722e4bd6ad7e5ce\"\u003e\u003ccode\u003ebbbffea\u003c/code\u003e\u003c/a\u003e chore: Update dist\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/d6f5dc331b44474b19a52caaf85fa4d637b13c8e\"\u003e\u003ccode\u003ed6f5dc3\u003c/code\u003e\u003c/a\u003e fix: assumeRole failing from session tag size too large (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1808\"\u003e#1808\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/12014c07985c020b135a0afd39774a2368feb018\"\u003e\u003ccode\u003e12014c0\u003c/code\u003e\u003c/a\u003e docs: fix typo in README.md (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1809\"\u003e#1809\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/4ab3589ed2f2cfd7ad620217486baa497bfee67d\"\u003e\u003ccode\u003e4ab3589\u003c/code\u003e\u003c/a\u003e chore: replay 6.2 devel changes onto main (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1807\"\u003e#1807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/99214aa6889fcddfa57764031d71add364327e59\"\u003e\u003ccode\u003e99214aa\u003c/code\u003e\u003c/a\u003e chore: Update dist\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/217d17914b0cd9d60b0a245d448e1b24818a1ead\"\u003e\u003ccode\u003e217d179\u003c/code\u003e\u003c/a\u003e fix: allow kubelet token symlink (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1805\"\u003e#1805\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/5548f3441ba4214d9bc45b3eb0dc57d86c453a1a\"\u003e\u003ccode\u003e5548f34\u003c/code\u003e\u003c/a\u003e chore: Update dist\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/77cd089899db691aca656a40c5feca6f9ffd1a6c\"\u003e\u003ccode\u003e77cd089\u003c/code\u003e\u003c/a\u003e chore: document container credentials provider support (and delete transitive...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/commit/dbacf3135e24f60790e5ac01a67f84e199191db3\"\u003e\u003ccode\u003edbacf31\u003c/code\u003e\u003c/a\u003e chore: bump release version (\u003ca href=\"https://redirect.github.com/aws-actions/configure-aws-credentials/issues/1801\"\u003e#1801\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws-actions/configure-aws-credentials/compare/d979d5b3a71173a29b74b5b88418bfda9437d885...e7f100cf4c008499ea8adda475de1042d6975c7b\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `anthropics/claude-code-action` from 1.0.133 to 1.0.142\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.142\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.141\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003e\u003ccode\u003e11ba604\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.170 and Agent SDK to 0.3.170\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/593d7a5c4e0073569f74772c2b7b64c30ec14707\"\u003e\u003ccode\u003e593d7a5\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.169 and Agent SDK to 0.3.169\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github/codeql-action` from 4.36.0 to 4.36.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/github/codeql-action/releases\"\u003egithub/codeql-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.36.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCache CodeQL CLI version information across Actions steps. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3943\"\u003e#3943\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3937\"\u003e#3937\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6\"\u003e2.25.6\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3948\"\u003e#3948\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.36.1\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/github/codeql-action/blob/main/CHANGELOG.md\"\u003egithub/codeql-action's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eCodeQL Action Changelog\u003c/h1\u003e\n\u003cp\u003eSee the \u003ca href=\"https://github.com/github/codeql-action/releases\"\u003ereleases page\u003c/a\u003e for the relevant changes to the CodeQL CLI and language packs.\u003c/p\u003e\n\u003ch2\u003e[UNRELEASED]\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003ch2\u003e4.36.2 - 04 Jun 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCache CodeQL CLI version information across Actions steps. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3943\"\u003e#3943\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3937\"\u003e#3937\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6\"\u003e2.25.6\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3948\"\u003e#3948\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.36.1 - 02 Jun 2026\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003ch2\u003e4.36.0 - 22 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cem\u003eBreaking change\u003c/em\u003e: Bump the minimum required CodeQL bundle version to 2.19.4. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3894\"\u003e#3894\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for SHA-256 Git object IDs. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3893\"\u003e#3893\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.5\"\u003e2.25.5\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3926\"\u003e#3926\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.5 - 15 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eWe have improved how the JavaScript bundles for the CodeQL Action are generated to avoid duplication across bundles and reduce the size of the repository by around 70%. This should have no effect on the runtime behaviour of the CodeQL Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3899\"\u003e#3899\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFor performance and accuracy reasons, \u003ca href=\"https://redirect.github.com/github/roadmap/issues/1158\"\u003eimproved incremental analysis\u003c/a\u003e will now only be enabled on a pull request when diff-informed analysis is also enabled for that run. If diff-informed analysis is unavailable (for example, because the PR diff ranges could not be computed), the action will fall back to a full analysis. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3791\"\u003e#3791\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eIf multiple inputs are provided for the GitHub-internal \u003ccode\u003eanalysis-kinds\u003c/code\u003e input, only \u003ccode\u003ecode-scanning\u003c/code\u003e will be enabled. The \u003ccode\u003eanalysis-kinds\u003c/code\u003e input is experimental, for GitHub-internal use only, and may change without notice at any time. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3892\"\u003e#3892\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded an experimental change which, when running a Code Scanning analysis for a PR with \u003ca href=\"https://redirect.github.com/github/roadmap/issues/1158\"\u003eimproved incremental analysis\u003c/a\u003e enabled, prefers CodeQL CLI versions that have a cached overlay-base database for the configured languages. This speeds up analysis for a repository when there is not yet a cached overlay-base database for the latest CLI version. We expect to roll this change out to everyone in May. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3880\"\u003e#3880\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.4 - 07 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.4\"\u003e2.25.4\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3881\"\u003e#3881\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.3 - 01 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cem\u003eUpcoming breaking change\u003c/em\u003e: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3837\"\u003e#3837\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigurations for private registries that use Cloudsmith or GCP OIDC are now accepted. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3850\"\u003e#3850\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBest-effort connection tests for private registries now use \u003ccode\u003eGET\u003c/code\u003e requests instead of \u003ccode\u003eHEAD\u003c/code\u003e for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3853\"\u003e#3853\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3852\"\u003e#3852\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3\"\u003e2.25.3\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3865\"\u003e#3865\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.2 - 15 Apr 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eThe undocumented TRAP cache cleanup feature that could be enabled using the \u003ccode\u003eCODEQL_ACTION_CLEANUP_TRAP_CACHES\u003c/code\u003e environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the \u003ccode\u003etrap-caching: false\u003c/code\u003e input to the \u003ccode\u003einit\u003c/code\u003e Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3795\"\u003e#3795\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eThe Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3789\"\u003e#3789\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePython analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3794\"\u003e#3794\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3807\"\u003e#3807\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2\"\u003e2.25.2\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3823\"\u003e#3823\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/8aad20d150bbac5944a9f9d289da16a4b0d87c1e\"\u003e\u003ccode\u003e8aad20d\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3949\"\u003e#3949\u003c/a\u003e from github/update-v4.36.2-dcb947ce1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/f521b08cd8f468ab193ea950a589cb2e9c869c6a\"\u003e\u003ccode\u003ef521b08\u003c/code\u003e\u003c/a\u003e Add additional changelog notes\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/8aeff0ffb7b78582ee0d0e6eebb8140684400d08\"\u003e\u003ccode\u003e8aeff0f\u003c/code\u003e\u003c/a\u003e Update changelog for v4.36.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/dcb947ce15976d40ea82935510b2db4872ec124c\"\u003e\u003ccode\u003edcb947c\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3948\"\u003e#3948\u003c/a\u003e from github/update-bundle/codeql-bundle-v2.25.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/c251bcefa178f7780f62f150002acffe3d07fde9\"\u003e\u003ccode\u003ec251bce\u003c/code\u003e\u003c/a\u003e Add changelog note\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/62953c18b35f59e28351d2f1e806925aef8b1e3c\"\u003e\u003ccode\u003e62953c1\u003c/code\u003e\u003c/a\u003e Update default bundle to codeql-bundle-v2.25.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/423b570baf1976cd7a3daeba5d6e9f9b76432f37\"\u003e\u003ccode\u003e423b570\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3946\"\u003e#3946\u003c/a\u003e from github/dependabot/npm_and_yarn/npm-minor-5d507a...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/c35d1b164463ee62a100735382aaaa525c5d3496\"\u003e\u003ccode\u003ec35d1b1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3947\"\u003e#3947\u003c/a\u003e from github/dependabot/github_actions/dot-github/wor...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/cb1a588b02755b176e7b9d033ed4b69312f0e1bd\"\u003e\u003ccode\u003ecb1a588\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3937\"\u003e#3937\u003c/a\u003e from github/robertbrignull/waitForProcessing_backoff\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/ba47406412c54532b5b4fcfbaf877c9e2382b206\"\u003e\u003ccode\u003eba47406\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3943\"\u003e#3943\u003c/a\u003e from github/henrymercer/cache-cli-version-info\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/github/codeql-action/compare/7211b7c8077ea37d8641b6271f6a365a22a5fbfa...8aad20d150bbac5944a9f9d289da16a4b0d87c1e\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/msu-denver/discord-email-verification/pull/55","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/msu-denver%2Fdiscord-email-verification/issues/55","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/55/packages"}},{"old_version":"1.0.140","new_version":"1.0.142","update_type":"patch","path":null,"pr_created_at":"2026-06-09T20:23:23.000Z","version_change":"1.0.140 → 1.0.142","issue":{"uuid":"4625328977","node_id":"PR_kwDOPQIb9c7kjAgW","number":821,"state":"open","title":"ci(deps): bump anthropics/claude-code-action from 1.0.140 to 1.0.142","user":"dependabot[bot]","labels":["dependencies","automated"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-09T20:23:23.000Z","updated_at":"2026-06-09T20:30:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.140","new_version":"1.0.142","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.140 to 1.0.142.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.142\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.142\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.141\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.141\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003e\u003ccode\u003e11ba604\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.170 and Agent SDK to 0.3.170\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/593d7a5c4e0073569f74772c2b7b64c30ec14707\"\u003e\u003ccode\u003e593d7a5\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.169 and Agent SDK to 0.3.169\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1...11ba60486e4aec9ddfeafcf4bb3f00b028ac2c16\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.140\u0026new-version=1.0.142)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/nikhillinit/Updog_restore/pull/821","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikhillinit%2FUpdog_restore/issues/821","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/821/packages"}},{"old_version":"1.0.133","new_version":"1.0.134","update_type":"patch","path":null,"pr_created_at":"2026-06-09T06:14:25.000Z","version_change":"1.0.133 → 1.0.134","issue":{"uuid":"4619380225","node_id":"PR_kwDOQ227Rs7kPUYm","number":835,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.134","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-09T06:14:25.000Z","updated_at":"2026-06-09T06:15:36.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.134","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.134.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/7f37f2e37370b88fc5bd16496c0512c6e8aa2e45\"\u003e\u003ccode\u003e7f37f2e\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.160 and Agent SDK to 0.3.160\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fb53c379a095ce320374ea95deb57e86e7f59313\"\u003e\u003ccode\u003efb53c37\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.159 and Agent SDK to 0.3.159\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/c5c315c8a1080dbacfe5cee8ce7817b6865689f0\"\u003e\u003ccode\u003ec5c315c\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.158 and Agent SDK to 0.3.158\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/f809dea0ba1e57aaec370e112e7aa0c63720715d\"\u003e\u003ccode\u003ef809dea\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.157 and Agent SDK to 0.3.157\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0fb1b8f3032f540a5904180f71bf8c0d320e0674\"\u003e\u003ccode\u003e0fb1b8f\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.156 and Agent SDK to 0.3.156\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/3d4c9fde8ea318717e7ecb704aeee7396c503cbc\"\u003e\u003ccode\u003e3d4c9fd\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.154 and Agent SDK to 0.3.154\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1.0.133...v1.0.134\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.134)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/felipewilliam2/AV-SITE/pull/835","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/felipewilliam2%2FAV-SITE/issues/835","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/835/packages"}},{"old_version":"1","new_version":"1.0.133","update_type":null,"path":"the actions group","pr_created_at":"2026-06-08T20:30:37.000Z","version_change":"1 → 1.0.133","issue":{"uuid":"4616410113","node_id":"PR_kwDOHd0S1c7kFeM8","number":10795,"state":"closed","title":"Bump anthropics/claude-code-action from 1 to 1.0.133 in the actions group","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-12T04:43:05.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T20:30:37.000Z","updated_at":"2026-06-12T04:43:07.000Z","time_to_close":288748,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"anthropics/claude-code-action","old_version":"1","new_version":"1.0.133","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":"the actions group","ecosystem":"actions"},"body":"Bumps the actions group with 1 update: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action).\n\nUpdates `anthropics/claude-code-action` from 1 to 1.0.133\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Workload Identity Federation (OIDC) authentication support by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1338\"\u003eanthropics/claude-code-action#1338\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.129\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.129\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.129\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.128\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.128\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.128\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.127\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eRefactor allowed_bots actor resolution by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1330\"\u003eanthropics/claude-code-action#1330\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.127\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.127\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.126\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.126\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.126\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.125\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSimplify comment tool instructions in prompt by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1328\"\u003eanthropics/claude-code-action#1328\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.125\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.125\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.124\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: add parentheses to fix operator precedence in co-author check by \u003ca href=\"https://github.com/FuturizeRush\"\u003e\u003ccode\u003e@​FuturizeRush\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1199\"\u003eanthropics/claude-code-action#1199\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eStrengthen simplified tag-mode prompt (USE_SIMPLE_PROMPT) by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1313\"\u003eanthropics/claude-code-action#1313\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix prettier formatting in create-prompt by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1325\"\u003eanthropics/claude-code-action#1325\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/b020494b5730f8571c0b2e636a34f77eae7b8261\"\u003e\u003ccode\u003eb020494\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.143 and Agent SDK to 0.3.143\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/d56f10247e2dcf6fddb45f01805c4b96bfcfe56c\"\u003e\u003ccode\u003ed56f102\u003c/code\u003e\u003c/a\u003e Strengthen simplified tag-mode prompt (USE_SIMPLE_PROMPT) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1313\"\u003e#1313\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bbad5183ff223fbcffe0f77d1cda997681296523\"\u003e\u003ccode\u003ebbad518\u003c/code\u003e\u003c/a\u003e fix: add parentheses to fix operator precedence in co-author check (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1199\"\u003e#1199\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/51ea8ea73a139f2a74ff649e3092c25a904aed7e\"\u003e\u003ccode\u003e51ea8ea\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.142 and Agent SDK to 0.3.142\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/acfa366ca8f2fc77b87a6d750c60661dc6cd2d84\"\u003e\u003ccode\u003eacfa366\u003c/code\u003e\u003c/a\u003e chore: bump pinned Bun to 1.3.14 (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1312\"\u003e#1312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/9eb125afe37fb6baf7bf6e914e6cdf151c4d088d\"\u003e\u003ccode\u003e9eb125a\u003c/code\u003e\u003c/a\u003e fix: handle non-user actors (e.g. Copilot) in permission and actor checks (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1\"\u003e#1\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/1450f658d3a8e185d1ff9be0810420ac8bfbc5f4\"\u003e\u003ccode\u003e1450f65\u003c/code\u003e\u003c/a\u003e fix: write execution file when SDK throws (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0756f6ef2bee1c37e43b07fb1dd8e83d835a0b60\"\u003e\u003ccode\u003e0756f6e\u003c/code\u003e\u003c/a\u003e fix: exclude .claude-pr snapshot from git staging (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1277\"\u003e#1277\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/f4d6a11de140b67a978a8b8becd31cf84470cafd\"\u003e\u003ccode\u003ef4d6a11\u003c/code\u003e\u003c/a\u003e fix: dereference symlinks when snapshotting sensitive paths to .claude-pr/ (#...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bf6d40e0688f27760ff7564735aaf60c260396a0\"\u003e\u003ccode\u003ebf6d40e\u003c/code\u003e\u003c/a\u003e fix: allow , in branch names (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1310\"\u003e#1310\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1\u0026new-version=1.0.133)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/bluesky-social/social-app/pull/10795","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluesky-social%2Fsocial-app/issues/10795","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10795/packages"}},{"old_version":"1.0.133","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T16:08:48.000Z","version_change":"1.0.133 → 1.0.140","issue":{"uuid":"4614514937","node_id":"PR_kwDOR-VHWc7j_Hd4","number":51,"state":"closed","title":"build(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-10T02:21:31.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T16:08:48.000Z","updated_at":"2026-06-10T02:21:33.000Z","time_to_close":123163,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/msu-denver/discord-email-verification/pull/51","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/msu-denver%2Fdiscord-email-verification/issues/51","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/51/packages"}},{"old_version":"1.0.123","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T15:06:47.000Z","version_change":"1.0.123 → 1.0.140","issue":{"uuid":"4614042416","node_id":"PR_kwDOQG-mB87j9iY4","number":99,"state":"closed","title":"ci(deps): bump anthropics/claude-code-action from 1.0.123 to 1.0.140","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-15T15:08:36.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T15:06:47.000Z","updated_at":"2026-06-15T15:08:38.000Z","time_to_close":604909,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.123","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.123 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Workload Identity Federation (OIDC) authentication support by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1338\"\u003eanthropics/claude-code-action#1338\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.129\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/51ea8ea73a139f2a74ff649e3092c25a904aed7e...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.123\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Coastal-Programs/notion-cli/pull/99","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Coastal-Programs%2Fnotion-cli/issues/99","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/99/packages"}},{"old_version":"1.0.133","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T14:25:15.000Z","version_change":"1.0.133 → 1.0.140","issue":{"uuid":"4613729345","node_id":"PR_kwDOQ630NM7j8glp","number":17195,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":["dco-signoff: yes","size/XS","dependencies","ai-generated","tier/3-restricted"],"assignees":[],"locked":false,"comments_count":6,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T14:25:15.000Z","updated_at":"2026-06-09T01:10:02.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/kubestellar/console/pull/17195","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubestellar%2Fconsole/issues/17195","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/17195/packages"}},{"old_version":"1.0.101","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T09:20:59.000Z","version_change":"1.0.101 → 1.0.140","issue":{"uuid":"4611565659","node_id":"PR_kwDOSCwfQs7j1Ui0","number":71,"state":"closed","title":"chore(deps): bump anthropics/claude-code-action from 1.0.101 to 1.0.140","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-15T09:23:02.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T09:20:59.000Z","updated_at":"2026-06-15T09:23:05.000Z","time_to_close":604923,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.101","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.101 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Workload Identity Federation (OIDC) authentication support by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1338\"\u003eanthropics/claude-code-action#1338\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.129\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/38ec876110f9fbf8b950c79f534430740c3ac009...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.101\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/alexdoroshevich/RegScope/pull/71","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexdoroshevich%2FRegScope/issues/71","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/71/packages"}},{"old_version":"1.0.133","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T09:09:27.000Z","version_change":"1.0.133 → 1.0.140","issue":{"uuid":"4611486615","node_id":"PR_kwDOPXNGM87j1DnB","number":10325,"state":"closed","title":"ci(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":["dependencies","automated"],"assignees":["itstimwhite"],"locked":false,"comments_count":20,"pull_request":true,"closed_at":"2026-06-10T05:10:52.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-08T09:09:27.000Z","updated_at":"2026-06-10T05:11:03.000Z","time_to_close":158485,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/JovieInc/Jovie/pull/10325","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/JovieInc%2FJovie/issues/10325","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10325/packages"}},{"old_version":"1.0.133","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T06:28:51.000Z","version_change":"1.0.133 → 1.0.140","issue":{"uuid":"4610534611","node_id":"PR_kwDOSjd-S87jx8Nr","number":68,"state":"open","title":"ci(deps): bump the actions group across 1 directory with 6 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T06:28:51.000Z","updated_at":"2026-06-08T06:29:16.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps): bump","group_name":"actions","update_count":6,"packages":[{"name":"actions/checkout","old_version":"6.0.2","new_version":"6.0.3","repository_url":"https://github.com/actions/checkout"},{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"},{"name":"github/codeql-action","old_version":"4.36.0","new_version":"4.36.2","repository_url":"https://github.com/github/codeql-action"},{"name":"docker/setup-qemu-action","old_version":"4.0.0","new_version":"4.1.0","repository_url":"https://github.com/docker/setup-qemu-action"},{"name":"EmbarkStudios/cargo-deny-action","old_version":"2.0.19","new_version":"2.0.20","repository_url":"https://github.com/embarkstudios/cargo-deny-action"},{"name":"trufflesecurity/trufflehog","old_version":"3.95.3","new_version":"3.95.5","repository_url":"https://github.com/trufflesecurity/trufflehog"}],"path":null,"ecosystem":"actions"},"body":"Bumps the actions group with 6 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `6.0.3` |\n| [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.133` | `1.0.140` |\n| [github/codeql-action](https://github.com/github/codeql-action) | `4.36.0` | `4.36.2` |\n| [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `4.0.0` | `4.1.0` |\n| [EmbarkStudios/cargo-deny-action](https://github.com/embarkstudios/cargo-deny-action) | `2.0.19` | `2.0.20` |\n| [trufflesecurity/trufflehog](https://github.com/trufflesecurity/trufflehog) | `3.95.3` | `3.95.5` |\n\n\nUpdates `actions/checkout` from 6.0.2 to 6.0.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/releases\"\u003eactions/checkout's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate changelog by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2357\"\u003eactions/checkout#2357\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: expand merge commit SHA regex and add SHA-256 test cases by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix checkout init for SHA-256 repositories by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2439\"\u003eactions/checkout#2439\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate changelog for v6.0.3 by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2446\"\u003eactions/checkout#2446\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v6...v6.0.3\"\u003ehttps://github.com/actions/checkout/compare/v6...v6.0.3\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/blob/main/CHANGELOG.md\"\u003eactions/checkout's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003ev6.0.3\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix checkout init for SHA-256 repositories by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2439\"\u003eactions/checkout#2439\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: expand merge commit SHA regex and add SHA-256 test cases by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix tag handling: preserve annotations and explicit fetch-tags by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2356\"\u003eactions/checkout#2356\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd worktree support for persist-credentials includeIf by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2327\"\u003eactions/checkout#2327\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePersist creds to a separate file by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2286\"\u003eactions/checkout#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate README to include Node.js 24 support details and requirements by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2248\"\u003eactions/checkout#2248\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev5.0.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v5 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2301\"\u003eactions/checkout#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev5.0.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate actions checkout to use node 24 by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2226\"\u003eactions/checkout#2226\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.3.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v4 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2305\"\u003eactions/checkout#2305\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.3.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs: update README.md by \u003ca href=\"https://github.com/motss\"\u003e\u003ccode\u003e@​motss\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1971\"\u003eactions/checkout#1971\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd internal repos for checking out multiple repositories by \u003ca href=\"https://github.com/mouismail\"\u003e\u003ccode\u003e@​mouismail\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1977\"\u003eactions/checkout#1977\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDocumentation update - add recommended permissions to Readme by \u003ca href=\"https://github.com/benwells\"\u003e\u003ccode\u003e@​benwells\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2043\"\u003eactions/checkout#2043\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdjust positioning of user email note and permissions heading by \u003ca href=\"https://github.com/joshmgross\"\u003e\u003ccode\u003e@​joshmgross\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2044\"\u003eactions/checkout#2044\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate README.md by \u003ca href=\"https://github.com/nebuk89\"\u003e\u003ccode\u003e@​nebuk89\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2194\"\u003eactions/checkout#2194\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CODEOWNERS for actions by \u003ca href=\"https://github.com/TingluoHuang\"\u003e\u003ccode\u003e@​TingluoHuang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2224\"\u003eactions/checkout#2224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate package dependencies by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2236\"\u003eactions/checkout#2236\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eurl-helper.ts\u003c/code\u003e now leverages well-known environment variables by \u003ca href=\"https://github.com/jww3\"\u003e\u003ccode\u003e@​jww3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1941\"\u003eactions/checkout#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExpand unit test coverage for \u003ccode\u003eisGhes\u003c/code\u003e by \u003ca href=\"https://github.com/jww3\"\u003e\u003ccode\u003e@​jww3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1946\"\u003eactions/checkout#1946\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCheck out other refs/* by commit if provided, fall back to ref by \u003ca href=\"https://github.com/orhantoy\"\u003e\u003ccode\u003e@​orhantoy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1924\"\u003eactions/checkout#1924\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Ref and Commit outputs by \u003ca href=\"https://github.com/lucacome\"\u003e\u003ccode\u003e@​lucacome\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1180\"\u003eactions/checkout#1180\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDependency updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e- \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1777\"\u003eactions/checkout#1777\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1872\"\u003eactions/checkout#1872\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.1.7\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump the minor-npm-dependencies group across 1 directory with 4 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1739\"\u003eactions/checkout#1739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1697\"\u003eactions/checkout#1697\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck out other refs/* by commit by \u003ca href=\"https://github.com/orhantoy\"\u003e\u003ccode\u003e@​orhantoy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1774\"\u003eactions/checkout#1774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003e\u003ccode\u003edf4cb1c\u003c/code\u003e\u003c/a\u003e Update changelog for v6.0.3 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2446\"\u003e#2446\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/1cce3390c2bfda521930d01229c073c7ff920824\"\u003e\u003ccode\u003e1cce339\u003c/code\u003e\u003c/a\u003e Fix checkout init for SHA-256 repositories (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2439\"\u003e#2439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/900f2210b1d28bbbd0bd22d17926b9e224e8f231\"\u003e\u003ccode\u003e900f221\u003c/code\u003e\u003c/a\u003e fix: expand merge commit SHA regex and add SHA-256 test cases (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2414\"\u003e#2414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/0c366fd6a839edf440554fa01a7085ccba70ac98\"\u003e\u003ccode\u003e0c366fd\u003c/code\u003e\u003c/a\u003e Update changelog (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2357\"\u003e#2357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `anthropics/claude-code-action` from 1.0.133 to 1.0.140\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github/codeql-action` from 4.36.0 to 4.36.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/github/codeql-action/releases\"\u003egithub/codeql-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.36.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCache CodeQL CLI version information across Actions steps. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3943\"\u003e#3943\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3937\"\u003e#3937\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6\"\u003e2.25.6\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3948\"\u003e#3948\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.36.1\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/github/codeql-action/blob/main/CHANGELOG.md\"\u003egithub/codeql-action's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eCodeQL Action Changelog\u003c/h1\u003e\n\u003cp\u003eSee the \u003ca href=\"https://github.com/github/codeql-action/releases\"\u003ereleases page\u003c/a\u003e for the relevant changes to the CodeQL CLI and language packs.\u003c/p\u003e\n\u003ch2\u003e[UNRELEASED]\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003ch2\u003e4.36.2 - 04 Jun 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCache CodeQL CLI version information across Actions steps. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3943\"\u003e#3943\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3937\"\u003e#3937\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6\"\u003e2.25.6\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3948\"\u003e#3948\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.36.1 - 02 Jun 2026\u003c/h2\u003e\n\u003cp\u003eNo user facing changes.\u003c/p\u003e\n\u003ch2\u003e4.36.0 - 22 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cem\u003eBreaking change\u003c/em\u003e: Bump the minimum required CodeQL bundle version to 2.19.4. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3894\"\u003e#3894\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for SHA-256 Git object IDs. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3893\"\u003e#3893\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.5\"\u003e2.25.5\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3926\"\u003e#3926\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.5 - 15 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eWe have improved how the JavaScript bundles for the CodeQL Action are generated to avoid duplication across bundles and reduce the size of the repository by around 70%. This should have no effect on the runtime behaviour of the CodeQL Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3899\"\u003e#3899\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFor performance and accuracy reasons, \u003ca href=\"https://redirect.github.com/github/roadmap/issues/1158\"\u003eimproved incremental analysis\u003c/a\u003e will now only be enabled on a pull request when diff-informed analysis is also enabled for that run. If diff-informed analysis is unavailable (for example, because the PR diff ranges could not be computed), the action will fall back to a full analysis. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3791\"\u003e#3791\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eIf multiple inputs are provided for the GitHub-internal \u003ccode\u003eanalysis-kinds\u003c/code\u003e input, only \u003ccode\u003ecode-scanning\u003c/code\u003e will be enabled. The \u003ccode\u003eanalysis-kinds\u003c/code\u003e input is experimental, for GitHub-internal use only, and may change without notice at any time. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3892\"\u003e#3892\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded an experimental change which, when running a Code Scanning analysis for a PR with \u003ca href=\"https://redirect.github.com/github/roadmap/issues/1158\"\u003eimproved incremental analysis\u003c/a\u003e enabled, prefers CodeQL CLI versions that have a cached overlay-base database for the configured languages. This speeds up analysis for a repository when there is not yet a cached overlay-base database for the latest CLI version. We expect to roll this change out to everyone in May. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3880\"\u003e#3880\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.4 - 07 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.4\"\u003e2.25.4\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3881\"\u003e#3881\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.3 - 01 May 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cem\u003eUpcoming breaking change\u003c/em\u003e: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3837\"\u003e#3837\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigurations for private registries that use Cloudsmith or GCP OIDC are now accepted. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3850\"\u003e#3850\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBest-effort connection tests for private registries now use \u003ccode\u003eGET\u003c/code\u003e requests instead of \u003ccode\u003eHEAD\u003c/code\u003e for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3853\"\u003e#3853\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3852\"\u003e#3852\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3\"\u003e2.25.3\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3865\"\u003e#3865\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e4.35.2 - 15 Apr 2026\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eThe undocumented TRAP cache cleanup feature that could be enabled using the \u003ccode\u003eCODEQL_ACTION_CLEANUP_TRAP_CACHES\u003c/code\u003e environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the \u003ccode\u003etrap-caching: false\u003c/code\u003e input to the \u003ccode\u003einit\u003c/code\u003e Action. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3795\"\u003e#3795\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eThe Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3789\"\u003e#3789\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePython analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3794\"\u003e#3794\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3807\"\u003e#3807\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate default CodeQL bundle version to \u003ca href=\"https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2\"\u003e2.25.2\u003c/a\u003e. \u003ca href=\"https://redirect.github.com/github/codeql-action/pull/3823\"\u003e#3823\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/8aad20d150bbac5944a9f9d289da16a4b0d87c1e\"\u003e\u003ccode\u003e8aad20d\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3949\"\u003e#3949\u003c/a\u003e from github/update-v4.36.2-dcb947ce1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/f521b08cd8f468ab193ea950a589cb2e9c869c6a\"\u003e\u003ccode\u003ef521b08\u003c/code\u003e\u003c/a\u003e Add additional changelog notes\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/8aeff0ffb7b78582ee0d0e6eebb8140684400d08\"\u003e\u003ccode\u003e8aeff0f\u003c/code\u003e\u003c/a\u003e Update changelog for v4.36.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/dcb947ce15976d40ea82935510b2db4872ec124c\"\u003e\u003ccode\u003edcb947c\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3948\"\u003e#3948\u003c/a\u003e from github/update-bundle/codeql-bundle-v2.25.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/c251bcefa178f7780f62f150002acffe3d07fde9\"\u003e\u003ccode\u003ec251bce\u003c/code\u003e\u003c/a\u003e Add changelog note\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/62953c18b35f59e28351d2f1e806925aef8b1e3c\"\u003e\u003ccode\u003e62953c1\u003c/code\u003e\u003c/a\u003e Update default bundle to codeql-bundle-v2.25.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/423b570baf1976cd7a3daeba5d6e9f9b76432f37\"\u003e\u003ccode\u003e423b570\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3946\"\u003e#3946\u003c/a\u003e from github/dependabot/npm_and_yarn/npm-minor-5d507a...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/c35d1b164463ee62a100735382aaaa525c5d3496\"\u003e\u003ccode\u003ec35d1b1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3947\"\u003e#3947\u003c/a\u003e from github/dependabot/github_actions/dot-github/wor...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/cb1a588b02755b176e7b9d033ed4b69312f0e1bd\"\u003e\u003ccode\u003ecb1a588\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3937\"\u003e#3937\u003c/a\u003e from github/robertbrignull/waitForProcessing_backoff\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/github/codeql-action/commit/ba47406412c54532b5b4fcfbaf877c9e2382b206\"\u003e\u003ccode\u003eba47406\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/github/codeql-action/issues/3943\"\u003e#3943\u003c/a\u003e from github/henrymercer/cache-cli-version-info\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/github/codeql-action/compare/7211b7c8077ea37d8641b6271f6a365a22a5fbfa...8aad20d150bbac5944a9f9d289da16a4b0d87c1e\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `docker/setup-qemu-action` from 4.0.0 to 4.1.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/docker/setup-qemu-action/releases\"\u003edocker/setup-qemu-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.1.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003ereset\u003c/code\u003e input to uninstall current emulators by \u003ca href=\"https://github.com/crazy-max\"\u003e\u003ccode\u003e@​crazy-max\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/21\"\u003edocker/setup-qemu-action#21\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump \u003ccode\u003e@​docker/actions-toolkit\u003c/code\u003e from 0.77.0 to 0.91.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/250\"\u003edocker/setup-qemu-action#250\u003c/a\u003e \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/247\"\u003edocker/setup-qemu-action#247\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump brace-expansion from 1.1.12 to 1.1.15 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/265\"\u003edocker/setup-qemu-action#265\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump fast-xml-builder from 1.0.0 to 1.2.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/286\"\u003edocker/setup-qemu-action#286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump fast-xml-parser from 5.4.2 to 5.8.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/255\"\u003edocker/setup-qemu-action#255\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump flatted from 3.3.3 to 3.4.2 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/257\"\u003edocker/setup-qemu-action#257\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump glob from 10.3.15 to 10.5.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/254\"\u003edocker/setup-qemu-action#254\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump handlebars from 4.7.8 to 4.7.9 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/262\"\u003edocker/setup-qemu-action#262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump lodash from 4.17.23 to 4.18.1 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/273\"\u003edocker/setup-qemu-action#273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump postcss from 8.5.6 to 8.5.10 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/285\"\u003edocker/setup-qemu-action#285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 6.2.1 to 7.5.15 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/287\"\u003edocker/setup-qemu-action#287\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tmp from 0.2.5 to 0.2.6 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/291\"\u003edocker/setup-qemu-action#291\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump undici from 6.23.0 to 6.26.0 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/251\"\u003edocker/setup-qemu-action#251\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump vite from 7.3.1 to 7.3.2 in \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/pull/271\"\u003edocker/setup-qemu-action#271\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/docker/setup-qemu-action/compare/v4.0.0...v4.1.0\"\u003ehttps://github.com/docker/setup-qemu-action/compare/v4.0.0...v4.1.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/06116385d9baf250c9f4dcb4858b16962ea869c3\"\u003e\u003ccode\u003e0611638\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/issues/21\"\u003e#21\u003c/a\u003e from crazy-max/uninst\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/ce59c818a5ff16552ddf7407ee7cb00bea682925\"\u003e\u003ccode\u003ece59c81\u003c/code\u003e\u003c/a\u003e chore: update generated content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/2ddad4401e17fa807e8a3c4bd289ccdd993f0868\"\u003e\u003ccode\u003e2ddad44\u003c/code\u003e\u003c/a\u003e uninstall current emulators\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/8c37cd6f3456e1f3f3026250eac496709e9e7e10\"\u003e\u003ccode\u003e8c37cd6\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/issues/250\"\u003e#250\u003c/a\u003e from docker/dependabot/npm_and_yarn/docker/actions-to...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/d1a0ff34af591b8e290e46f3fa114ef5bb81cd1c\"\u003e\u003ccode\u003ed1a0ff3\u003c/code\u003e\u003c/a\u003e chore: update generated content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/0a8f3dc12541cc2c3b19c182a1a2c90a2c8b8d93\"\u003e\u003ccode\u003e0a8f3dc\u003c/code\u003e\u003c/a\u003e build(deps): bump \u003ccode\u003e@​docker/actions-toolkit\u003c/code\u003e from 0.79.0 to 0.91.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/9430f61a7691bd1bfdc4d6ba70e558659d36fa7a\"\u003e\u003ccode\u003e9430f61\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/issues/291\"\u003e#291\u003c/a\u003e from docker/dependabot/npm_and_yarn/tmp-0.2.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/978bd7796cb6698377e7af6726b726e5ced642d0\"\u003e\u003ccode\u003e978bd77\u003c/code\u003e\u003c/a\u003e chore: update generated content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/3479febc62cc0fbcb98c7c7fc0dac778c0d79d6a\"\u003e\u003ccode\u003e3479feb\u003c/code\u003e\u003c/a\u003e build(deps): bump tmp from 0.2.5 to 0.2.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/setup-qemu-action/commit/b113c264143c28c2974bed61af25be32d32f4782\"\u003e\u003ccode\u003eb113c26\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/setup-qemu-action/issues/255\"\u003e#255\u003c/a\u003e from docker/dependabot/npm_and_yarn/fast-xml-parser-5...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/setup-qemu-action/compare/ce360397dd3f832beb865e1373c09c0e9f86d70a...06116385d9baf250c9f4dcb4858b16962ea869c3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `EmbarkStudios/cargo-deny-action` from 2.0.19 to 2.0.20\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/EmbarkStudios/cargo-deny-action/commit/bb137d7af7e4fb67e5f82a49c4fce4fad40782fe\"\u003e\u003ccode\u003ebb137d7\u003c/code\u003e\u003c/a\u003e Bump to 0.19.8\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/embarkstudios/cargo-deny-action/compare/a531616d8ce3b9177443e48a1159bc945a099823...bb137d7af7e4fb67e5f82a49c4fce4fad40782fe\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `trufflesecurity/trufflehog` from 3.95.3 to 3.95.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/trufflesecurity/trufflehog/releases\"\u003etrufflesecurity/trufflehog's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.95.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[INS-461] Add test to ensure new detectors are registered in defaults.go by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4915\"\u003etrufflesecurity/trufflehog#4915\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-455] Unify common logic in Atlassian Data Center detectors by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4907\"\u003etrufflesecurity/trufflehog#4907\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(github): cache repo info under original URL on redirect by \u003ca href=\"https://github.com/kashifkhan0771\"\u003e\u003ccode\u003e@​kashifkhan0771\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4958\"\u003etrufflesecurity/trufflehog#4958\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded GitLab OAuth Detector by \u003ca href=\"https://github.com/shahzadhaider1\"\u003e\u003ccode\u003e@​shahzadhaider1\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4729\"\u003etrufflesecurity/trufflehog#4729\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBox Detector: Extract Subject ID for Analyzer Integration by \u003ca href=\"https://github.com/shahzadhaider1\"\u003e\u003ccode\u003e@​shahzadhaider1\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4761\"\u003etrufflesecurity/trufflehog#4761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-346] SpectralOps Personal API Key Detector by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4770\"\u003etrufflesecurity/trufflehog#4770\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-335] Added AWS Appsync Detector by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4803\"\u003etrufflesecurity/trufflehog#4803\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(twilio): deduplicate matches to prevent O(N×M) result explosion by \u003ca href=\"https://github.com/kashifkhan0771\"\u003e\u003ccode\u003e@​kashifkhan0771\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4954\"\u003etrufflesecurity/trufflehog#4954\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomate corpora testing in CI by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4927\"\u003etrufflesecurity/trufflehog#4927\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnable errcheck and staticcheck for golangci-lint v2 and resolve all issues by \u003ca href=\"https://github.com/amanfcp\"\u003e\u003ccode\u003e@​amanfcp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4924\"\u003etrufflesecurity/trufflehog#4924\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add host, db and username to ExtraData for database detectors by \u003ca href=\"https://github.com/mariocj89\"\u003e\u003ccode\u003e@​mariocj89\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4849\"\u003etrufflesecurity/trufflehog#4849\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove over speculation from Corpora CI workflow by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4974\"\u003etrufflesecurity/trufflehog#4974\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix line numbers for duplicate secrets within a chunk by \u003ca href=\"https://github.com/amanfcp\"\u003e\u003ccode\u003e@​amanfcp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4910\"\u003etrufflesecurity/trufflehog#4910\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd feature flags for Pinecone, Cloudinary, and GitLab OAuth detectors by \u003ca href=\"https://github.com/camgunz\"\u003e\u003ccode\u003e@​camgunz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4961\"\u003etrufflesecurity/trufflehog#4961\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate Go security dependencies by \u003ca href=\"https://github.com/cursor\"\u003e\u003ccode\u003e@​cursor\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4986\"\u003etrufflesecurity/trufflehog#4986\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin GitHub Actions to SHA digests by \u003ca href=\"https://github.com/bryanbeverly\"\u003e\u003ccode\u003e@​bryanbeverly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4985\"\u003etrufflesecurity/trufflehog#4985\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CODEOWNERS: replace 5 slugs with scanning + integrations by \u003ca href=\"https://github.com/bryanbeverly\"\u003e\u003ccode\u003e@​bryanbeverly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4983\"\u003etrufflesecurity/trufflehog#4983\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded source config flags to sharepoint proto by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4972\"\u003etrufflesecurity/trufflehog#4972\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[SCAN-795] HTML decoder: ASPX and entity-encoded HTML support by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4981\"\u003etrufflesecurity/trufflehog#4981\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadds some debugging info for APKs and fixes issues parsing obfuscated APKs by \u003ca href=\"https://github.com/johannestaas-trufflesec\"\u003e\u003ccode\u003e@​johannestaas-trufflesec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4991\"\u003etrufflesecurity/trufflehog#4991\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mariocj89\"\u003e\u003ccode\u003e@​mariocj89\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4849\"\u003etrufflesecurity/trufflehog#4849\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cursor\"\u003e\u003ccode\u003e@​cursor\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4986\"\u003etrufflesecurity/trufflehog#4986\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/johannestaas-trufflesec\"\u003e\u003ccode\u003e@​johannestaas-trufflesec\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4991\"\u003etrufflesecurity/trufflehog#4991\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/trufflesecurity/trufflehog/compare/v3.95.3...v3.95.5\"\u003ehttps://github.com/trufflesecurity/trufflehog/compare/v3.95.3...v3.95.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.95.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[INS-461] Add test to ensure new detectors are registered in defaults.go by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4915\"\u003etrufflesecurity/trufflehog#4915\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-455] Unify common logic in Atlassian Data Center detectors by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4907\"\u003etrufflesecurity/trufflehog#4907\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(github): cache repo info under original URL on redirect by \u003ca href=\"https://github.com/kashifkhan0771\"\u003e\u003ccode\u003e@​kashifkhan0771\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4958\"\u003etrufflesecurity/trufflehog#4958\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded GitLab OAuth Detector by \u003ca href=\"https://github.com/shahzadhaider1\"\u003e\u003ccode\u003e@​shahzadhaider1\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4729\"\u003etrufflesecurity/trufflehog#4729\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBox Detector: Extract Subject ID for Analyzer Integration by \u003ca href=\"https://github.com/shahzadhaider1\"\u003e\u003ccode\u003e@​shahzadhaider1\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4761\"\u003etrufflesecurity/trufflehog#4761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-346] SpectralOps Personal API Key Detector by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4770\"\u003etrufflesecurity/trufflehog#4770\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[INS-335] Added AWS Appsync Detector by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4803\"\u003etrufflesecurity/trufflehog#4803\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(twilio): deduplicate matches to prevent O(N×M) result explosion by \u003ca href=\"https://github.com/kashifkhan0771\"\u003e\u003ccode\u003e@​kashifkhan0771\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4954\"\u003etrufflesecurity/trufflehog#4954\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomate corpora testing in CI by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4927\"\u003etrufflesecurity/trufflehog#4927\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnable errcheck and staticcheck for golangci-lint v2 and resolve all issues by \u003ca href=\"https://github.com/amanfcp\"\u003e\u003ccode\u003e@​amanfcp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4924\"\u003etrufflesecurity/trufflehog#4924\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add host, db and username to ExtraData for database detectors by \u003ca href=\"https://github.com/mariocj89\"\u003e\u003ccode\u003e@​mariocj89\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4849\"\u003etrufflesecurity/trufflehog#4849\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove over speculation from Corpora CI workflow by \u003ca href=\"https://github.com/mustansir14\"\u003e\u003ccode\u003e@​mustansir14\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4974\"\u003etrufflesecurity/trufflehog#4974\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix line numbers for duplicate secrets within a chunk by \u003ca href=\"https://github.com/amanfcp\"\u003e\u003ccode\u003e@​amanfcp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4910\"\u003etrufflesecurity/trufflehog#4910\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd feature flags for Pinecone, Cloudinary, and GitLab OAuth detectors by \u003ca href=\"https://github.com/camgunz\"\u003e\u003ccode\u003e@​camgunz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4961\"\u003etrufflesecurity/trufflehog#4961\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate Go security dependencies by \u003ca href=\"https://github.com/cursor\"\u003e\u003ccode\u003e@​cursor\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4986\"\u003etrufflesecurity/trufflehog#4986\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePin GitHub Actions to SHA digests by \u003ca href=\"https://github.com/bryanbeverly\"\u003e\u003ccode\u003e@​bryanbeverly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4985\"\u003etrufflesecurity/trufflehog#4985\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CODEOWNERS: replace 5 slugs with scanning + integrations by \u003ca href=\"https://github.com/bryanbeverly\"\u003e\u003ccode\u003e@​bryanbeverly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4983\"\u003etrufflesecurity/trufflehog#4983\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded source config flags to sharepoint proto by \u003ca href=\"https://github.com/MuneebUllahKhan222\"\u003e\u003ccode\u003e@​MuneebUllahKhan222\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/pull/4972\"\u003etrufflesecurity/trufflehog#4972\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/d411fff7b8879a62509f3fa98c07f247ac089a51\"\u003e\u003ccode\u003ed411fff\u003c/code\u003e\u003c/a\u003e feat(apk): adds some debugging info for APKs and fixes issues parsing obfusca...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/26eae1f2969f4240acfd3fc363b504b1b43255d4\"\u003e\u003ccode\u003e26eae1f\u003c/code\u003e\u003c/a\u003e [SCAN-795] HTML decoder: ASPX and entity-encoded HTML support (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4981\"\u003e#4981\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/6c8f64071ba92640f5cc6f4177a91e9a09b0db12\"\u003e\u003ccode\u003e6c8f640\u003c/code\u003e\u003c/a\u003e Added source config flags to sharepoint proto (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4972\"\u003e#4972\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/9f0b97f1600cd5f51e5ecb8380087807acb790f9\"\u003e\u003ccode\u003e9f0b97f\u003c/code\u003e\u003c/a\u003e Update CODEOWNERS: replace 5 slugs with scanning + integrations (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4983\"\u003e#4983\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/36f6f697079e637bccb1e05561a481d8b4016862\"\u003e\u003ccode\u003e36f6f69\u003c/code\u003e\u003c/a\u003e Pin GitHub Actions to SHA digests (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4985\"\u003e#4985\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/52ebebb9b0a762ad5b84a8c2205d38dcf471bd2d\"\u003e\u003ccode\u003e52ebebb\u003c/code\u003e\u003c/a\u003e Update Go security dependencies (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4986\"\u003e#4986\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/ec67ff26cdeb5c8600a2ca83992d9347975c172a\"\u003e\u003ccode\u003eec67ff2\u003c/code\u003e\u003c/a\u003e Add feature flags for Pinecone, Cloudinary, and GitLab OAuth detectors (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4961\"\u003e#4961\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/0ec3634f6cf66a61912a923fee9d20cc45633a67\"\u003e\u003ccode\u003e0ec3634\u003c/code\u003e\u003c/a\u003e Fix line numbers for duplicate secrets within a chunk (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4910\"\u003e#4910\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/79acbf4703fe7eebd5f190073bd89b16456da7d4\"\u003e\u003ccode\u003e79acbf4\u003c/code\u003e\u003c/a\u003e Remove over speculation from Corpora CI workflow (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4974\"\u003e#4974\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/trufflesecurity/trufflehog/commit/d86254ee022cc6533192c5601c143a42706c1004\"\u003e\u003ccode\u003ed86254e\u003c/code\u003e\u003c/a\u003e feat: add host, db and username to ExtraData for database detectors (\u003ca href=\"https://redirect.github.com/trufflesecurity/trufflehog/issues/4849\"\u003e#4849\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/trufflesecurity/trufflehog/compare/37b77001d0174ebec2fcca2bd83ff83a6d45a3ab...d411fff7b8879a62509f3fa98c07f247ac089a51\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/buildwithbarista/barista/pull/68","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/buildwithbarista%2Fbarista/issues/68","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/68/packages"}},{"old_version":"1.0.133","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T05:16:30.000Z","version_change":"1.0.133 → 1.0.140","issue":{"uuid":"4610208551","node_id":"PR_kwDORhxuCs7jw5A1","number":564,"state":"open","title":"chore(deps): bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T05:16:30.000Z","updated_at":"2026-06-08T05:16:31.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/DeliciousHouse/aries-app/pull/564","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeliciousHouse%2Faries-app/issues/564","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/564/packages"}},{"old_version":"1.0.111","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T01:24:51.000Z","version_change":"1.0.111 → 1.0.140","issue":{"uuid":"4609387654","node_id":"PR_kwDORjxlvs7juP67","number":428,"state":"open","title":"chore: bump the all-minor-patch group across 1 directory with 5 updates","user":"dependabot[bot]","labels":["type/dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T01:24:51.000Z","updated_at":"2026-06-08T01:25:33.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore: bump","group_name":"all-minor-patch","update_count":5,"packages":[{"name":"actions/checkout","old_version":"6.0.2","new_version":"6.0.3","repository_url":"https://github.com/actions/checkout"},{"name":"pnpm/action-setup","old_version":"6.0.5","new_version":"6.0.8","repository_url":"https://github.com/pnpm/action-setup"},{"name":"anthropics/claude-code-action","old_version":"1.0.111","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"},{"name":"browser-actions/setup-firefox","old_version":"1.7.1","new_version":"1.7.2","repository_url":"https://github.com/browser-actions/setup-firefox"},{"name":"cypress-io/github-action","old_version":"7.1.10","new_version":"7.4.0","repository_url":"https://github.com/cypress-io/github-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps the all-minor-patch group with 5 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `6.0.3` |\n| [pnpm/action-setup](https://github.com/pnpm/action-setup) | `6.0.5` | `6.0.8` |\n| [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.111` | `1.0.140` |\n| [browser-actions/setup-firefox](https://github.com/browser-actions/setup-firefox) | `1.7.1` | `1.7.2` |\n| [cypress-io/github-action](https://github.com/cypress-io/github-action) | `7.1.10` | `7.4.0` |\n\n\nUpdates `actions/checkout` from 6.0.2 to 6.0.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/releases\"\u003eactions/checkout's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate changelog by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2357\"\u003eactions/checkout#2357\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: expand merge commit SHA regex and add SHA-256 test cases by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix checkout init for SHA-256 repositories by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2439\"\u003eactions/checkout#2439\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate changelog for v6.0.3 by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2446\"\u003eactions/checkout#2446\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v6...v6.0.3\"\u003ehttps://github.com/actions/checkout/compare/v6...v6.0.3\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/blob/main/CHANGELOG.md\"\u003eactions/checkout's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003ev6.0.3\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix checkout init for SHA-256 repositories by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2439\"\u003eactions/checkout#2439\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: expand merge commit SHA regex and add SHA-256 test cases by \u003ca href=\"https://github.com/yaananth\"\u003e\u003ccode\u003e@​yaananth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2414\"\u003eactions/checkout#2414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix tag handling: preserve annotations and explicit fetch-tags by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2356\"\u003eactions/checkout#2356\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd worktree support for persist-credentials includeIf by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2327\"\u003eactions/checkout#2327\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev6.0.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePersist creds to a separate file by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2286\"\u003eactions/checkout#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate README to include Node.js 24 support details and requirements by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2248\"\u003eactions/checkout#2248\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev5.0.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v5 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2301\"\u003eactions/checkout#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev5.0.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate actions checkout to use node 24 by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2226\"\u003eactions/checkout#2226\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.3.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v4 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2305\"\u003eactions/checkout#2305\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.3.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs: update README.md by \u003ca href=\"https://github.com/motss\"\u003e\u003ccode\u003e@​motss\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1971\"\u003eactions/checkout#1971\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd internal repos for checking out multiple repositories by \u003ca href=\"https://github.com/mouismail\"\u003e\u003ccode\u003e@​mouismail\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1977\"\u003eactions/checkout#1977\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDocumentation update - add recommended permissions to Readme by \u003ca href=\"https://github.com/benwells\"\u003e\u003ccode\u003e@​benwells\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2043\"\u003eactions/checkout#2043\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdjust positioning of user email note and permissions heading by \u003ca href=\"https://github.com/joshmgross\"\u003e\u003ccode\u003e@​joshmgross\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2044\"\u003eactions/checkout#2044\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate README.md by \u003ca href=\"https://github.com/nebuk89\"\u003e\u003ccode\u003e@​nebuk89\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2194\"\u003eactions/checkout#2194\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CODEOWNERS for actions by \u003ca href=\"https://github.com/TingluoHuang\"\u003e\u003ccode\u003e@​TingluoHuang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2224\"\u003eactions/checkout#2224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate package dependencies by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2236\"\u003eactions/checkout#2236\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eurl-helper.ts\u003c/code\u003e now leverages well-known environment variables by \u003ca href=\"https://github.com/jww3\"\u003e\u003ccode\u003e@​jww3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1941\"\u003eactions/checkout#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExpand unit test coverage for \u003ccode\u003eisGhes\u003c/code\u003e by \u003ca href=\"https://github.com/jww3\"\u003e\u003ccode\u003e@​jww3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1946\"\u003eactions/checkout#1946\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCheck out other refs/* by commit if provided, fall back to ref by \u003ca href=\"https://github.com/orhantoy\"\u003e\u003ccode\u003e@​orhantoy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1924\"\u003eactions/checkout#1924\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.2.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Ref and Commit outputs by \u003ca href=\"https://github.com/lucacome\"\u003e\u003ccode\u003e@​lucacome\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1180\"\u003eactions/checkout#1180\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDependency updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e- \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1777\"\u003eactions/checkout#1777\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1872\"\u003eactions/checkout#1872\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev4.1.7\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump the minor-npm-dependencies group across 1 directory with 4 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1739\"\u003eactions/checkout#1739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1697\"\u003eactions/checkout#1697\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck out other refs/* by commit by \u003ca href=\"https://github.com/orhantoy\"\u003e\u003ccode\u003e@​orhantoy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1774\"\u003eactions/checkout#1774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003e\u003ccode\u003edf4cb1c\u003c/code\u003e\u003c/a\u003e Update changelog for v6.0.3 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2446\"\u003e#2446\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/1cce3390c2bfda521930d01229c073c7ff920824\"\u003e\u003ccode\u003e1cce339\u003c/code\u003e\u003c/a\u003e Fix checkout init for SHA-256 repositories (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2439\"\u003e#2439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/900f2210b1d28bbbd0bd22d17926b9e224e8f231\"\u003e\u003ccode\u003e900f221\u003c/code\u003e\u003c/a\u003e fix: expand merge commit SHA regex and add SHA-256 test cases (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2414\"\u003e#2414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/0c366fd6a839edf440554fa01a7085ccba70ac98\"\u003e\u003ccode\u003e0c366fd\u003c/code\u003e\u003c/a\u003e Update changelog (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2357\"\u003e#2357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `pnpm/action-setup` from 6.0.5 to 6.0.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pnpm/action-setup/releases\"\u003epnpm/action-setup's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs(README): fix \u003ccode\u003ecache_dependency_path\u003c/code\u003e type by \u003ca href=\"https://github.com/haines\"\u003e\u003ccode\u003e@​haines\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/257\"\u003epnpm/action-setup#257\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: drop patchPnpmEnv so standalone+self-update works on Windows by \u003ca href=\"https://github.com/zkochan\"\u003e\u003ccode\u003e@​zkochan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/258\"\u003epnpm/action-setup#258\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: update pnpm to 11.1.1 by \u003ca href=\"https://github.com/mungodewar\"\u003e\u003ccode\u003e@​mungodewar\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/248\"\u003epnpm/action-setup#248\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mungodewar\"\u003e\u003ccode\u003e@​mungodewar\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/248\"\u003epnpm/action-setup#248\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/pnpm/action-setup/compare/v6.0.7...v6.0.8\"\u003ehttps://github.com/pnpm/action-setup/compare/v6.0.7...v6.0.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev6.0.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: honor devEngines.packageManager.onFail=error (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/252\"\u003e#252\u003c/a\u003e) by \u003ca href=\"https://github.com/zkochan\"\u003e\u003ccode\u003e@​zkochan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/254\"\u003epnpm/action-setup#254\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: restore inputs from state in post by \u003ca href=\"https://github.com/haines\"\u003e\u003ccode\u003e@​haines\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/255\"\u003epnpm/action-setup#255\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: self-update bootstrap to packageManager-pinned version (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/233\"\u003e#233\u003c/a\u003e) by \u003ca href=\"https://github.com/zkochan\"\u003e\u003ccode\u003e@​zkochan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/256\"\u003epnpm/action-setup#256\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/haines\"\u003e\u003ccode\u003e@​haines\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/255\"\u003epnpm/action-setup#255\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/pnpm/action-setup/compare/v6.0.6...v6.0.7\"\u003ehttps://github.com/pnpm/action-setup/compare/v6.0.6...v6.0.7\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev6.0.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bin_dest output points to self-updated pnpm, not bootstrap by \u003ca href=\"https://github.com/zkochan\"\u003e\u003ccode\u003e@​zkochan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/pnpm/action-setup/pull/249\"\u003epnpm/action-setup#249\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/pnpm/action-setup/compare/v6.0.5...v6.0.6\"\u003ehttps://github.com/pnpm/action-setup/compare/v6.0.5...v6.0.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/0e279bb959325dab635dd2c09392533439d90093\"\u003e\u003ccode\u003e0e279bb\u003c/code\u003e\u003c/a\u003e fix: update pnpm to 11.1.1 (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/248\"\u003e#248\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/3e835812ef01165f4f8ae08ade56da44427ed4e0\"\u003e\u003ccode\u003e3e83581\u003c/code\u003e\u003c/a\u003e fix: drop patchPnpmEnv so standalone+self-update works on Windows (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/258\"\u003e#258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/551b42e879e37e74d986effdd2a1647d2b02d464\"\u003e\u003ccode\u003e551b42e\u003c/code\u003e\u003c/a\u003e docs(README): fix \u003ccode\u003ecache_dependency_path\u003c/code\u003e type (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/257\"\u003e#257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/739bfe42ca9233c5e6aca07c1a25a9d34aca49b0\"\u003e\u003ccode\u003e739bfe4\u003c/code\u003e\u003c/a\u003e fix: self-update bootstrap to packageManager-pinned version (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/233\"\u003e#233\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/256\"\u003e#256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/f61705d907761b3b5209e83910fafd1fea50c5a1\"\u003e\u003ccode\u003ef61705d\u003c/code\u003e\u003c/a\u003e chore: add CODEOWNERS\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/7a5507b117647ab83e96e9db317ba2234056ebf3\"\u003e\u003ccode\u003e7a5507b\u003c/code\u003e\u003c/a\u003e fix: restore inputs from state in post (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/255\"\u003e#255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/1155470f3e5fb872accd4d104b8dfcda41f676ce\"\u003e\u003ccode\u003e1155470\u003c/code\u003e\u003c/a\u003e fix: honor devEngines.packageManager.onFail=error (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/252\"\u003e#252\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/254\"\u003e#254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/91ab88e2619ed1f46221f0ba42d1492c02baf788\"\u003e\u003ccode\u003e91ab88e\u003c/code\u003e\u003c/a\u003e fix: bin_dest output points to self-updated pnpm, not bootstrap (\u003ca href=\"https://redirect.github.com/pnpm/action-setup/issues/249\"\u003e#249\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pnpm/action-setup/commit/e578e19d19d31b011b841ba2aca34731a5f706a5\"\u003e\u003ccode\u003ee578e19\u003c/code\u003e\u003c/a\u003e fix: update pnpm to 11.0.4\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/pnpm/action-setup/compare/8912a9102ac27614460f54aedde9e1e7f9aec20d...0e279bb959325dab635dd2c09392533439d90093\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `anthropics/claude-code-action` from 1.0.111 to 1.0.140\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.133\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse workload identity federation for Claude auth in CI workflows by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1344\"\u003eanthropics/claude-code-action#1344\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.133\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.132\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.132\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.131\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.131\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.130\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Workload Identity Federation (OIDC) authentication support by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1338\"\u003eanthropics/claude-code-action#1338\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.130\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.129\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/fefa07e9c665b7320f08c3b525980457f22f58aa...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `browser-actions/setup-firefox` from 1.7.1 to 1.7.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/browser-actions/setup-firefox/releases\"\u003ebrowser-actions/setup-firefox's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003esetup-firefox: v1.7.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.7.1...setup-firefox-v1.7.2\"\u003e1.7.2\u003c/a\u003e (2026-05-06)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003edrop 32-bit arch support (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/645\"\u003e#645\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/c5cfea27528d34cb3c7836264c24fb2942b483ff\"\u003ec5cfea2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupdate Node.js runtime to v24 LTS (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/642\"\u003e#642\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/4eb4a82c87af820d4b0060dd42369ad513ab247e\"\u003e4eb4a82\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupgrade dev dependencies (@actions/*, biome v2, vitest v4, \u003ccode\u003e@​vercel/ncc\u003c/code\u003e) (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/644\"\u003e#644\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/59e1322b5ddcfd76ee2ca70862e7cf22bf785260\"\u003e59e1322\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.7.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.7.1...setup-firefox-v1.7.2\"\u003e1.7.2\u003c/a\u003e (2026-05-06)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003edrop 32-bit arch support (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/645\"\u003e#645\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/c5cfea27528d34cb3c7836264c24fb2942b483ff\"\u003ec5cfea2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupdate Node.js runtime to v24 LTS (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/642\"\u003e#642\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/4eb4a82c87af820d4b0060dd42369ad513ab247e\"\u003e4eb4a82\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupgrade dev dependencies (@actions/*, biome v2, vitest v4, \u003ccode\u003e@​vercel/ncc\u003c/code\u003e) (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/644\"\u003e#644\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/59e1322b5ddcfd76ee2ca70862e7cf22bf785260\"\u003e59e1322\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/browser-actions/setup-firefox/blob/master/CHANGELOG.md\"\u003ebrowser-actions/setup-firefox's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.7.1...setup-firefox-v1.7.2\"\u003e1.7.2\u003c/a\u003e (2026-05-06)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003edrop 32-bit arch support (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/645\"\u003e#645\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/c5cfea27528d34cb3c7836264c24fb2942b483ff\"\u003ec5cfea2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupdate Node.js runtime to v24 LTS (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/642\"\u003e#642\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/4eb4a82c87af820d4b0060dd42369ad513ab247e\"\u003e4eb4a82\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eupgrade dev dependencies (@actions/*, biome v2, vitest v4, \u003ccode\u003e@​vercel/ncc\u003c/code\u003e) (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/644\"\u003e#644\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/59e1322b5ddcfd76ee2ca70862e7cf22bf785260\"\u003e59e1322\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.7.0...setup-firefox-v1.7.1\"\u003e1.7.1\u003c/a\u003e (2026-02-21)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ebump node version (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/638\"\u003e#638\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/6671e17b21f1a2622c5501c2e8a786694ddf5a4c\"\u003e6671e17\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.6.0...setup-firefox-v1.7.0\"\u003e1.7.0\u003c/a\u003e (2025-07-27)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eSupport Linux ARM64 (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/637\"\u003e#637\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/c1a8cea110691bde64de6253c0bebfbc740e11ac\"\u003ec1a8cea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd .exe to firefox-path on Windows (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/635\"\u003e#635\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/6a1b4a4b1961b3705b75f7c78b70a56d51fc4c4c\"\u003e6a1b4a4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.5.4...setup-firefox-v1.6.0\"\u003e1.6.0\u003c/a\u003e (2025-07-13)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eSupport windows 11 arm (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/631\"\u003e#631\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/5db70482d10f7a9236fb5451388e81941932cb1f\"\u003e5db7048\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.5.3...setup-firefox-v1.5.4\"\u003e1.5.4\u003c/a\u003e (2025-01-25)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix an off-by-one error with bz2/xz download URLs (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/626\"\u003e#626\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/f7574dd7c71ff2cf094cdaa89735bdcb096d72e5\"\u003ef7574dd\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/625\"\u003e#625\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/setup-firefox-v1.5.2...setup-firefox-v1.5.3\"\u003e1.5.3\u003c/a\u003e (2025-01-19)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eCoping with compression change for linux download (\u003ca href=\"https://redirect.github.com/browser-actions/setup-firefox/issues/623\"\u003e#623\u003c/a\u003e) (\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/063eed68fefb6e72be98fb0c0d2d106784c79634\"\u003e063eed6\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/browser-actions/setup-firefox/commit/0bc507ddf224827e3b1af68e014d5e42ab93e795\"\u003e\u003ccode\u003e0bc507d\u003c/code\u003e\u003c/a\u003e Release v1.7.2 at b2420b5fc5c9410c3bb4558ea29f202e52b4f41e\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/browser-actions/setup-firefox/compare/fcf821c621167805dd63a29662bd7cb5676c81a8...0bc507ddf224827e3b1af68e014d5e42ab93e795\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cypress-io/github-action` from 7.1.10 to 7.4.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/cypress-io/github-action/releases\"\u003ecypress-io/github-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev7.4.0\u003c/h2\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/cypress-io/github-action/compare/v7.3.0...v7.4.0\"\u003e7.4.0\u003c/a\u003e (2026-06-01)\u003c/h1\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e remove Node.js 25 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1781\"\u003e#1781\u003c/a\u003e) (\u003ca href=\"https://github.com/cypress-io/github-action/commit/948d67d3074f1bbb6379c8bdbb04e95d2f8e593f\"\u003e948d67d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev7.3.0\u003c/h2\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/cypress-io/github-action/compare/v7.2.0...v7.3.0\"\u003e7.3.0\u003c/a\u003e (2026-05-05)\u003c/h1\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd \u003ccode\u003eexpose\u003c/code\u003e input for Cypress.expose() API (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1749\"\u003e#1749\u003c/a\u003e) (\u003ca href=\"https://github.com/cypress-io/github-action/commit/dace029018fcdf86e0df89a31bc3cfa5b32570d8\"\u003edace029\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev7.2.0\u003c/h2\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/cypress-io/github-action/compare/v7.1.10...v7.2.0\"\u003e7.2.0\u003c/a\u003e (2026-05-04)\u003c/h1\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e remove Node.js 20 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1747\"\u003e#1747\u003c/a\u003e) (\u003ca href=\"https://github.com/cypress-io/github-action/commit/b7a7441d775af8f8b9d19945c10dd689a51dba68\"\u003eb7a7441\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md\"\u003ecypress-io/github-action's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eThis document gives an overview of changes to the Cypress GitHub JavaScript Action \u003ca href=\"https://github.com/cypress-io/github-action\"\u003ecypress-io/github-action\u003c/a\u003e.\u003c/p\u003e\n\u003cp\u003eSee \u003ca href=\"https://github.com/cypress-io/github-action/releases\"\u003eReleases\u003c/a\u003e for full details of changes.\u003c/p\u003e\n\u003ctable\u003e\n\u003cthead\u003e\n\u003ctr\u003e\n\u003cth\u003eVersion\u003c/th\u003e\n\u003cth\u003eChanges\u003c/th\u003e\n\u003c/tr\u003e\n\u003c/thead\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.4.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 25. End of support for Node.js 25.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.3.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003eexpose\u003c/code\u003e for \u003ca href=\"https://docs.cypress.io/api/cypress-api/expose\"\u003e\u003ccode\u003eCypress.expose()\u003c/code\u003e\u003c/a\u003e support\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.2.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 20. End of support for Node.js 20.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.1.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003epackage-manager-cache\u003c/code\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev7.0.0\u003c/td\u003e\n\u003ctd\u003eAction runs under Node.js 24 instead of Node.js 20\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.10.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 23. End of support for Node.js 23.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.9.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter validation for \u003ccode\u003ecommand\u003c/code\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.8.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 18. End of support for Node.js 18.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.7.10\u003c/td\u003e\n\u003ctd\u003eExamples updated to Cypress 14\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.7.9\u003c/td\u003e\n\u003ctd\u003eMigrate to \u003ccode\u003e@actions/cache@4.0.0\u003c/code\u003e for continued access to GitHub Actions caching services\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.7.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 21. End of support for Node.js 21.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.6.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003esummary-title\u003c/code\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.5.0\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 16. End of support for Node.js 16.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.4.0\u003c/td\u003e\n\u003ctd\u003eAction adds PR number and URL if available when recording\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.3.0\u003c/td\u003e\n\u003ctd\u003ev6 is recommended action version\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.2.0\u003c/td\u003e\n\u003ctd\u003eExamples updated to Cypress 13\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.1.0\u003c/td\u003e\n\u003ctd\u003eExamples for Cypress 9 archived in action's \u003ca href=\"https://github.com/cypress-io/github-action/tree/v5\"\u003ev5\u003c/a\u003e branch\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev6.0.0\u003c/td\u003e\n\u003ctd\u003eAction runs under Node.js 20 instead of Node.js 16\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.8.1\u003c/td\u003e\n\u003ctd\u003eExamples remove Node.js 19. End of support for Node.js 19\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.8.0\u003c/td\u003e\n\u003ctd\u003eAdd GitHub step output \u003ccode\u003eresultsUrl\u003c/code\u003e. Deprecate \u003ccode\u003edashboardUrl\u003c/code\u003e.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.7.0\u003c/td\u003e\n\u003ctd\u003eAdd basic Yarn Modern Plug'n'Play support\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.6.2\u003c/td\u003e\n\u003ctd\u003eExamples add Node.js 20. End of support and removal of Node.js 14 examples.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.6.0\u003c/td\u003e\n\u003ctd\u003eAdd check for lockfile presence\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.5.0\u003c/td\u003e\n\u003ctd\u003eExamples add Yarn Modern\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.4.0\u003c/td\u003e\n\u003ctd\u003eExamples add Yarn Classic\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.3.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003epublish-summary\u003c/code\u003e (default \u003ccode\u003etrue\u003c/code\u003e)\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.2.0\u003c/td\u003e\n\u003ctd\u003eExamples add Node.js 19\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.1.0\u003c/td\u003e\n\u003ctd\u003eAdd parameter \u003ccode\u003eauto-cancel-after-failures\u003c/code\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev5.0.0\u003c/td\u003e\n\u003ctd\u003eExamples add Node.js 18 and remove Node.js 12\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev4.2.2\u003c/td\u003e\n\u003ctd\u003eDependency on GitHub \u003ccode\u003eset-output\u003c/code\u003e workflow command removed\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev4.2.0\u003c/td\u003e\n\u003ctd\u003eSupport for \u003ccode\u003epnpm\u003c/code\u003e added\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev4.0.0\u003c/td\u003e\n\u003ctd\u003eSupport for Cypress 10 and later versions added\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev3\u003c/td\u003e\n\u003ctd\u003eAction runs under Node.js 16 instead of Node.js 12\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev2\u003c/td\u003e\n\u003ctd\u003eCypress runs using the \u003ca href=\"https://on.cypress.io/module-api\"\u003eModule API\u003c/a\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ev1\u003c/td\u003e\n\u003ctd\u003e\u003cem\u003eThis version is no longer runnable in GitHub due to security changes.\u003c/em\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/tbody\u003e\n\u003c/table\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/948d67d3074f1bbb6379c8bdbb04e95d2f8e593f\"\u003e\u003ccode\u003e948d67d\u003c/code\u003e\u003c/a\u003e feat(deps): remove Node.js 25 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1781\"\u003e#1781\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/2b7e08ae8c9b661a771e3dc864829fb8693cb1af\"\u003e\u003ccode\u003e2b7e08a\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency node to v24.16.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1777\"\u003e#1777\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/69a0c7c0a5b2c0a81167f0c738897ef3f72d9693\"\u003e\u003ccode\u003e69a0c7c\u003c/code\u003e\u003c/a\u003e test: complete cypress@15.16.0 update (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1778\"\u003e#1778\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/e487d96c701316778ffaea5fccafca4d1ab58f41\"\u003e\u003ccode\u003ee487d96\u003c/code\u003e\u003c/a\u003e chore(deps): update node.js to v24.16.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1770\"\u003e#1770\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/5cfba340db24c57a561fe6f3ba8883deffc72d82\"\u003e\u003ccode\u003e5cfba34\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency webpack to ^5.107.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1771\"\u003e#1771\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/65ccb9f02c0b9dc4579b4a11398bfd779f4fc377\"\u003e\u003ccode\u003e65ccb9f\u003c/code\u003e\u003c/a\u003e chore: add minimum release age and vulnerability alerts to renovate config (#...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/5130fef9c331a8525857c7c8eb41a70f366f4a7b\"\u003e\u003ccode\u003e5130fef\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency cypress to v15.16.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1773\"\u003e#1773\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/e910707b25409dff74381de369cb753872ec2016\"\u003e\u003ccode\u003ee910707\u003c/code\u003e\u003c/a\u003e test: exclude Cypress from Yarn Modern npmMinimalAgeGate (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1774\"\u003e#1774\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/984bd80d6ee014c17e5503f1e6924ce8be94e57e\"\u003e\u003ccode\u003e984bd80\u003c/code\u003e\u003c/a\u003e chore(deps): update yarn to v4.15.0 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1768\"\u003e#1768\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cypress-io/github-action/commit/1c3bb666393340ff658f6dca68f689592d921dfa\"\u003e\u003ccode\u003e1c3bb66\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency vite to ^8.0.14 (\u003ca href=\"https://redirect.github.com/cypress-io/github-action/issues/1769\"\u003e#1769\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/cypress-io/github-action/compare/c495c3ddffba403ba11be95fffb67e25203b3799...948d67d3074f1bbb6379c8bdbb04e95d2f8e593f\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e\n\n\u003c!-- CURSOR_SUMMARY --\u003e\n---\n\n\u003e [!NOTE]\n\u003e **Low Risk**\n\u003e Routine dependency pin updates only; workflow behavior and secrets usage are unchanged, though E2E and Claude jobs may pick up upstream action fixes or regressions.\n\u003e \n\u003e **Overview**\n\u003e Bumps pinned third-party GitHub Actions across CI workflows with **no changes to job logic, permissions, or commands**.\n\u003e \n\u003e **`actions/checkout`** moves **6.0.2 → 6.0.3** and **`pnpm/action-setup`** **6.0.5 → 6.0.8** in cache refresh, Claude, DB backup, ingest, lint, unit tests, and E2E workflows. **`anthropics/claude-code-action`** **1.0.111 → 1.0.140** updates both the implement and review jobs in `claude.yml`. **`tests-e2e.yml`** also bumps **`browser-actions/setup-firefox`** **1.7.1 → 1.7.2** and **`cypress-io/github-action`** **7.1.10 → 7.4.0** for the Firefox matrix and integration test step.\n\u003e \n\u003e \u003csup\u003eReviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 31b7fcac46081c0b91138e8e523578c0b2e358bb. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).\u003c/sup\u003e\n\u003c!-- /CURSOR_SUMMARY --\u003e","html_url":"https://github.com/SemiAnalysisAI/InferenceX-app/pull/428","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/SemiAnalysisAI%2FInferenceX-app/issues/428","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/428/packages"}},{"old_version":"1.0.133","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T00:17:35.000Z","version_change":"1.0.133 → 1.0.140","issue":{"uuid":"4609193615","node_id":"PR_kwDOR9SdIs7jtpBd","number":472,"state":"open","title":"chore(deps): bump the actions group with 2 updates","user":"dependabot[bot]","labels":["security","dependencies"],"assignees":[],"locked":false,"comments_count":8,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T00:17:35.000Z","updated_at":"2026-06-08T01:23:14.946Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"actions","update_count":2,"packages":[{"name":"actions/checkout","old_version":"4","new_version":"6","repository_url":"https://github.com/actions/checkout"},{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action).\n\nUpdates `actions/checkout` from 4 to 6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/actions/checkout/releases\"\u003eactions/checkout's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate README to include Node.js 24 support details and requirements by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2248\"\u003eactions/checkout#2248\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePersist creds to a separate file by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2286\"\u003eactions/checkout#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev6-beta by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2298\"\u003eactions/checkout#2298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate readme/changelog for v6 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2311\"\u003eactions/checkout#2311\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v5.0.0...v6.0.0\"\u003ehttps://github.com/actions/checkout/compare/v5.0.0...v6.0.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev6-beta\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eUpdated persist-credentials to store the credentials under \u003ccode\u003e$RUNNER_TEMP\u003c/code\u003e instead of directly in the local git config.\u003c/p\u003e\n\u003cp\u003eThis requires a minimum Actions Runner version of \u003ca href=\"https://github.com/actions/runner/releases/tag/v2.329.0\"\u003ev2.329.0\u003c/a\u003e to access the persisted credentials for \u003ca href=\"https://docs.github.com/en/actions/tutorials/use-containerized-services/create-a-docker-container-action\"\u003eDocker container action\u003c/a\u003e scenarios.\u003c/p\u003e\n\u003ch2\u003ev5.0.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v5 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2301\"\u003eactions/checkout#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v5...v5.0.1\"\u003ehttps://github.com/actions/checkout/compare/v5...v5.0.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.0.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate actions checkout to use node 24 by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2226\"\u003eactions/checkout#2226\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePrepare v5.0.0 release by \u003ca href=\"https://github.com/salmanmkc\"\u003e\u003ccode\u003e@​salmanmkc\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2238\"\u003eactions/checkout#2238\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e⚠️ Minimum Compatible Runner Version\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003ev2.327.1\u003c/strong\u003e\u003cbr /\u003e\n\u003ca href=\"https://github.com/actions/runner/releases/tag/v2.327.1\"\u003eRelease Notes\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eMake sure your runner is updated to this version or newer to use this release.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v4...v5.0.0\"\u003ehttps://github.com/actions/checkout/compare/v4...v5.0.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev4.3.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePort v6 cleanup to v4 by \u003ca href=\"https://github.com/ericsciple\"\u003e\u003ccode\u003e@​ericsciple\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2305\"\u003eactions/checkout#2305\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/actions/checkout/compare/v4...v4.3.1\"\u003ehttps://github.com/actions/checkout/compare/v4...v4.3.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev4.3.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs: update README.md by \u003ca href=\"https://github.com/motss\"\u003e\u003ccode\u003e@​motss\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1971\"\u003eactions/checkout#1971\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd internal repos for checking out multiple repositories by \u003ca href=\"https://github.com/mouismail\"\u003e\u003ccode\u003e@​mouismail\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/1977\"\u003eactions/checkout#1977\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDocumentation update - add recommended permissions to Readme by \u003ca href=\"https://github.com/benwells\"\u003e\u003ccode\u003e@​benwells\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/actions/checkout/pull/2043\"\u003eactions/checkout#2043\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/df4cb1c069e1874edd31b4311f1884172cec0e10\"\u003e\u003ccode\u003edf4cb1c\u003c/code\u003e\u003c/a\u003e Update changelog for v6.0.3 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2446\"\u003e#2446\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/1cce3390c2bfda521930d01229c073c7ff920824\"\u003e\u003ccode\u003e1cce339\u003c/code\u003e\u003c/a\u003e Fix checkout init for SHA-256 repositories (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2439\"\u003e#2439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/900f2210b1d28bbbd0bd22d17926b9e224e8f231\"\u003e\u003ccode\u003e900f221\u003c/code\u003e\u003c/a\u003e fix: expand merge commit SHA regex and add SHA-256 test cases (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2414\"\u003e#2414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/0c366fd6a839edf440554fa01a7085ccba70ac98\"\u003e\u003ccode\u003e0c366fd\u003c/code\u003e\u003c/a\u003e Update changelog (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2357\"\u003e#2357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/de0fac2e4500dabe0009e67214ff5f5447ce83dd\"\u003e\u003ccode\u003ede0fac2\u003c/code\u003e\u003c/a\u003e Fix tag handling: preserve annotations and explicit fetch-tags (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2356\"\u003e#2356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/064fe7f3312418007dea2b49a19844a9ee378f49\"\u003e\u003ccode\u003e064fe7f\u003c/code\u003e\u003c/a\u003e Add orchestration_id to git user-agent when ACTIONS_ORCHESTRATION_ID is set (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/8e8c483db84b4bee98b60c0593521ed34d9990e8\"\u003e\u003ccode\u003e8e8c483\u003c/code\u003e\u003c/a\u003e Clarify v6 README (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/033fa0dc0b82693d8986f1016a0ec2c5e7d9cbb1\"\u003e\u003ccode\u003e033fa0d\u003c/code\u003e\u003c/a\u003e Add worktree support for persist-credentials includeIf (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2327\"\u003e#2327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/c2d88d3ecc89a9ef08eebf45d9637801dcee7eb5\"\u003e\u003ccode\u003ec2d88d3\u003c/code\u003e\u003c/a\u003e Update all references from v5 and v4 to v6 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2314\"\u003e#2314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/actions/checkout/commit/1af3b93b6815bc44a9784bd300feb67ff0d1eeb3\"\u003e\u003ccode\u003e1af3b93\u003c/code\u003e\u003c/a\u003e update readme/changelog for v6 (\u003ca href=\"https://redirect.github.com/actions/checkout/issues/2311\"\u003e#2311\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/actions/checkout/compare/v4...v6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `anthropics/claude-code-action` from 1.0.133 to 1.0.140\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/787c5a0ce96a9a6cfb050ea0c8f4c05f2447c251...fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/petry-projects/.github-private/pull/472","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/petry-projects%2F.github-private/issues/472","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/472/packages"}},{"old_version":"1.0.133","new_version":"1.0.140","update_type":"patch","path":null,"pr_created_at":"2026-06-08T00:06:19.000Z","version_change":"1.0.133 → 1.0.140","issue":{"uuid":"4609154354","node_id":"PR_kwDOP4Y2n87jtg4X","number":314,"state":"open","title":"chore(ci): Bump anthropics/claude-code-action from 1.0.133 to 1.0.140","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T00:06:19.000Z","updated_at":"2026-06-08T00:08:30.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(ci): Bump","packages":[{"name":"anthropics/claude-code-action","old_version":"1.0.133","new_version":"1.0.140","repository_url":"https://github.com/anthropics/claude-code-action"}],"path":null,"ecosystem":"actions"},"body":"Bumps [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) from 1.0.133 to 1.0.140.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/anthropics/claude-code-action/releases\"\u003eanthropics/claude-code-action's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.140\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.140\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.139\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.139\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.138\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.138\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.137\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.137\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.136\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.136\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.135\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.135\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.0.134\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd workload identity federation support to base-action by \u003ca href=\"https://github.com/ashwin-ant\"\u003e\u003ccode\u003e@​ashwin-ant\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1378\"\u003eanthropics/claude-code-action#1378\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: bump checkout and setup-bun in test workflows to Node 24 releases by \u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1379\"\u003eanthropics/claude-code-action#1379\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ant-kurt\"\u003e\u003ccode\u003e@​ant-kurt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/pull/1377\"\u003eanthropics/claude-code-action#1377\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\"\u003ehttps://github.com/anthropics/claude-code-action/compare/v1...v1.0.134\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/fbda2eb1bdc90d319b8d853f5deb53bca199a7c1\"\u003e\u003ccode\u003efbda2eb\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.168 and Agent SDK to 0.3.168\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/64de744025ca9e24df2b88204b4f1e968f39f009\"\u003e\u003ccode\u003e64de744\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.167 and Agent SDK to 0.3.167\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/410165836eba8e7e60fc3587e60bebdfd35ca785\"\u003e\u003ccode\u003e4101658\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.166 and Agent SDK to 0.3.166\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/41ea7642c1436fa0ee57aae58347904b71a5af27\"\u003e\u003ccode\u003e41ea764\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.165 and Agent SDK to 0.3.165\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/0b1b62002952733671bde978d429b50b51c51c85\"\u003e\u003ccode\u003e0b1b620\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.163 and Agent SDK to 0.3.163\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/70a6e5256e9e2366a1ed5c041904a982ba3a328f\"\u003e\u003ccode\u003e70a6e52\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.162 and Agent SDK to 0.3.162\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/36a69b6a90b850823f86de06fdfd56264772ad98\"\u003e\u003ccode\u003e36a69b6\u003c/code\u003e\u003c/a\u003e chore: bump Claude Code to 2.1.161 and Agent SDK to 0.3.161\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/bfad70d6a1b6a9a6716dda7303aa912d16ee9e79\"\u003e\u003ccode\u003ebfad70d\u003c/code\u003e\u003c/a\u003e ci: bump checkout and setup-bun in test workflows to Node 24 releases (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1379\"\u003e#1379\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/dc081a38099d56e9c6b87cf49d4ea001d1d92b24\"\u003e\u003ccode\u003edc081a3\u003c/code\u003e\u003c/a\u003e chore: bump actions/setup-node from v4.4.0 to v6.4.0 (Node.js 24) (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1377\"\u003e#1377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anthropics/claude-code-action/commit/420335da51896b8d64b398e86a3d9b05e7a6e7c1\"\u003e\u003ccode\u003e420335d\u003c/code\u003e\u003c/a\u003e Add workload identity federation support to base-action (\u003ca href=\"https://redirect.github.com/anthropics/claude-code-action/issues/1378\"\u003e#1378\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/anthropics/claude-code-action/compare/v1.0.133...v1.0.140\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anthropics/claude-code-action\u0026package-manager=github_actions\u0026previous-version=1.0.133\u0026new-version=1.0.140)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/jon890/fos-accountbook-frontend/pull/314","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jon890%2Ffos-accountbook-frontend/issues/314","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/314/packages"}}]}