Skip to content

feat: add recommendation engine use case - #1

Merged
robfrank merged 22 commits into
mainfrom
feat/recommendation-engine
Feb 25, 2026
Merged

feat: add recommendation engine use case#1
robfrank merged 22 commits into
mainfrom
feat/recommendation-engine

Conversation

@robfrank

Copy link
Copy Markdown
Contributor

Summary

  • Adds the first use case: recommendation-engine/, a self-contained ArcadeDB demo showing multi-model capabilities (graph traversal, vector similarity, time-series)
  • Five query patterns demonstrated via both curl (queries/queries.sh) and a Java fat JAR (java/ with arcadedb-network:26.2.1)
  • Includes Docker Compose (ArcadeDB 26.2.1), SQL schema/data files, and a setup script

What's included

recommendation-engine/
├── docker-compose.yml       ArcadeDB 26.2.1
├── setup.sh                 creates DB, applies schema + data
├── sql/01-schema.sql        User, Product, Show vertices; PURCHASED, WATCHED, INTERACTED edges; ProductInteraction documents; LSM_VECTOR indexes
├── sql/02-data.sql          5 users, 10 products, 5 shows, ~30 edges
├── queries/queries.sh       all 5 queries via curl
├── java/pom.xml             standalone Maven, arcadedb-network dep, fat JAR
└── java/src/.../RecommendationEngine.java  runs all 5 queries

Query patterns

# Pattern Signal
1 Collaborative Filtering Graph (Cypher)
2 Vector Similarity Search Vector (SQL + vectorNeighbors)
3 Trending Detection Time-series (SQL)
4 Multi-Model Hybrid (Streaming) Graph + Vector (MATCH)
5 Personalized Category Page Vector (SQL + vectorNeighbors)

Test plan

  • docker compose up -d starts ArcadeDB healthy
  • ./setup.sh completes without errors
  • ./queries/queries.sh returns results for all 5 queries
  • cd java && mvn package -q && java -jar target/recommendation-engine.jar prints all 5 query result sets

🤖 Generated with Claude Code

robfrank and others added 21 commits February 25, 2026 10:19
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… string

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…atibility

- Query 2: use vectorNeighbors in ORDER BY for sorted vector similarity
- Query 4: replace unsupported LET+GROUP BY with MATCH syntax
- Query 5: switch from Cypher to SQL for vectorNeighbors support

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@gemini-code-assist

Copy link
Copy Markdown

Summary of Changes

Hello @robfrank, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request introduces a new, self-contained recommendation-engine use case designed to showcase ArcadeDB's powerful multi-model features. It provides a practical, end-to-end example of how to combine graph traversal, vector similarity search, and time-series data to build intelligent recommendation systems. The inclusion of both curl and Java-based runnable demos, along with a complete setup, aims to facilitate easy adoption and experimentation with ArcadeDB's capabilities.

Highlights

  • New Use Case Added: Introduced a comprehensive recommendation-engine/ use case demonstrating ArcadeDB's multi-model capabilities.
  • Multi-Model Capabilities: Showcases graph traversal, vector similarity search, and time-series data for intelligent recommendations within a single database.
  • Diverse Query Patterns: Includes five distinct query patterns covering collaborative filtering, vector similarity, trending detection, and multi-model hybrids.
  • Runnable Demos: Provides runnable examples via both curl scripts and a Java fat JAR using arcadedb-network.
  • Easy Setup: Comes with Docker Compose, SQL schema/data files, and a setup.sh script for quick deployment and testing.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • .gitignore
    • Added log/ to the ignore list for Maven build output.
  • README.md
    • Updated the root README to introduce the new 'ArcadeDB Use Cases' section.
    • Added a table listing the recommendation-engine use case with its description and features.
    • Included a 'Structure' section detailing common files within each use case directory.
  • docs/plans/2026-02-25-recommendation-engine-design.md
    • Added a new design document outlining the architecture, repository structure, Docker Compose setup, schema, sample data, query patterns, and Java program details for the recommendation engine.
  • docs/plans/2026-02-25-recommendation-engine.md
    • Added a detailed implementation plan document for the recommendation engine use case, including step-by-step tasks for scaffolding, Docker Compose, SQL schema/data, scripts, and Java code.
  • recommendation-engine/README.md
    • Added a dedicated README for the recommendation engine use case, providing an overview, prerequisites, quickstart guide, schema details, query patterns, sample data, and ArcadeDB version notes.
  • recommendation-engine/docker-compose.yml
    • Added a Docker Compose file to set up an ArcadeDB 26.2.1 instance with exposed port and root password environment variable.
  • recommendation-engine/java/pom.xml
    • Added a Maven pom.xml file for the Java demo application, including arcadedb-network dependency and assembly plugin configuration to create a fat JAR.
  • recommendation-engine/java/src/main/java/com/arcadedb/examples/RecommendationEngine.java
    • Added the main Java application class (RecommendationEngine.java) which connects to ArcadeDB and executes all five recommendation query patterns, printing their results.
  • recommendation-engine/queries/queries.sh
    • Added a shell script (queries.sh) that demonstrates all five recommendation query patterns using curl commands against the ArcadeDB HTTP API.
  • recommendation-engine/setup.sh
    • Added an executable shell script (setup.sh) to wait for ArcadeDB, create the RecommendationEngine database, and apply the SQL schema and sample data files.
  • recommendation-engine/sql/01-schema.sql
    • Added SQL statements to define the schema for User, Product, Show vertex types, PURCHASED, WATCHED, INTERACTED edge types, and ProductInteraction document type, including unique and LSM_VECTOR indexes.
  • recommendation-engine/sql/02-data.sql
    • Added SQL statements to insert sample data for users, products (electronics, sports), shows, and various PURCHASED, WATCHED, and INTERACTED edges, along with ProductInteraction documents for trending analysis.
Activity
  • A new recommendation-engine use case was added, complete with Docker Compose setup, SQL schema and data, curl query scripts, and a Java demo application.
  • Detailed design and implementation plan documents were created to guide the development of this new use case.
  • The root README.md was updated to reflect the addition of this new example and provide a structured overview of the repository's use cases.
  • The .gitignore file was updated to include log/ for Maven output.
  • The entire feature, including code and documentation, was generated using Claude Code, indicating an AI-assisted development process.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces a new, self-contained recommendation engine use case, which is a valuable addition for demonstrating ArcadeDB's capabilities. The implementation is well-structured with Docker, SQL setup, and examples in both shell script and Java.

My review focuses on several areas for improvement:

  • Consistency: There are multiple discrepancies between the documentation (READMEs, design/implementation plans) and the actual code, particularly regarding the logic of the example queries. Some queries do not perform the multi-model operations they are described to.
  • Correctness: The database setup script is not idempotent and will fail if run more than once due to missing IF NOT EXISTS clauses on CREATE INDEX statements.
  • Clarity: Some query descriptions are misleading, which can confuse users trying to understand the examples.

Addressing these points will significantly improve the quality and clarity of this new use case.

Comment thread recommendation-engine/queries/queries.sh Outdated
Comment thread recommendation-engine/queries/queries.sh Outdated
Comment thread recommendation-engine/sql/01-schema.sql Outdated
Comment on lines +1 to +10
# Recommendation Engine Implementation Plan

> **For Claude:** REQUIRED SUB-SKILL: Use superpowers:executing-plans to implement this plan task-by-task.

**Goal:** Build a fully self-contained `recommendation-engine/` directory demonstrating ArcadeDB's multi-model capabilities (graph traversal, vector similarity, time-series) via five query patterns, runnable with both `curl` and a Java program.

**Architecture:** Self-contained directory per the design doc. Docker Compose brings up ArcadeDB 26.2.1. A `setup.sh` creates the database and applies SQL files. Five queries are demonstrated via `queries/queries.sh` (curl) and `java/` (Maven fat JAR using `arcadedb-network`).

**Tech Stack:** ArcadeDB 26.2.1, Docker Compose, Maven 3.x, Java 17+, `com.arcadedb:arcadedb-network:26.2.1`, `jq` (for setup script)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This implementation plan, along with the design document, appears to be out of sync with the final implementation. There are several discrepancies:

  • The method for setting the database password in Docker Compose is different.
  • The queries for patterns 2, 4, and 5 use different functions (vectorDistance vs vectorNeighbors) and logic than what is implemented.
  • Query 4 in the plan is a hybrid query, but the implementation is a simple collaborative filter.

Outdated planning documents can cause confusion for future developers. To improve maintainability, please consider either updating these documents to match the final code or removing them if they are no longer relevant.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added an "Implementation notes" block at the top of the plan doc (8f2cd50) listing the four deviations from the plan: Docker env var, vectorDistancevectorNeighbors, unsupported LET+GROUP BY, and the full index name requirement for vectorNeighbors.

Comment thread recommendation-engine/README.md Outdated
- Add IF NOT EXISTS to LSM_VECTOR CREATE INDEX statements (idempotency)
- Rename Query 4 from 'Multi-Model Hybrid' to 'Graph Traversal' to
  accurately reflect that it uses graph traversal only, not a vector+graph
  hybrid (LET+GROUP BY not supported in ArcadeDB 26.2.1)
- Remove misleading '+ trending interactions' from Query 5 description
- Update README query pattern table to show Graph signal for pattern 4
- Add implementation notes to plan doc documenting 26.2.1 deviations

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@robfrank
robfrank merged commit d859a08 into main Feb 25, 2026
@claude claude Bot mentioned this pull request Feb 25, 2026
@robfrank robfrank mentioned this pull request Feb 26, 2026
6 tasks
@claude claude Bot mentioned this pull request Mar 2, 2026
8 tasks
mergify Bot added a commit that referenced this pull request May 17, 2026
…23 in the github-actions group [skip ci]

Bumps the github-actions group with 1 update: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action).
Updates `anthropics/claude-code-action` from 1.0.119 to 1.0.123
Release notes

*Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).*

> v1.0.123
> --------
>
> What's Changed
> --------------
>
> * fix: allow , in branch names by [`@​bugbubug`](https://github.com/bugbubug) in [anthropics/claude-code-action#1310](https://redirect.github.com/anthropics/claude-code-action/pull/1310)
> * fix: dereference symlinks when snapshotting sensitive paths to .claude-pr/ by [`@​matanbaruch`](https://github.com/matanbaruch) in [anthropics/claude-code-action#1186](https://redirect.github.com/anthropics/claude-code-action/pull/1186)
> * fix: exclude .claude-pr snapshot from git staging by [`@​cvan20191`](https://github.com/cvan20191) in [anthropics/claude-code-action#1277](https://redirect.github.com/anthropics/claude-code-action/pull/1277)
> * fix: write execution file when SDK throws by [`@​Jerry2003826`](https://github.com/Jerry2003826) in [anthropics/claude-code-action#1255](https://redirect.github.com/anthropics/claude-code-action/pull/1255)
> * fix: handle non-user actors (e.g. Copilot) in permission and actor checks by [`@​krislavten`](https://github.com/krislavten) in [anthropics/claude-code-action#1144](https://redirect.github.com/anthropics/claude-code-action/pull/1144)
> * chore: bump pinned Bun to 1.3.14 by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1312](https://redirect.github.com/anthropics/claude-code-action/pull/1312)
>
> New Contributors
> ----------------
>
> * [`@​bugbubug`](https://github.com/bugbubug) made their first contribution in [anthropics/claude-code-action#1310](https://redirect.github.com/anthropics/claude-code-action/pull/1310)
> * [`@​matanbaruch`](https://github.com/matanbaruch) made their first contribution in [anthropics/claude-code-action#1186](https://redirect.github.com/anthropics/claude-code-action/pull/1186)
> * [`@​cvan20191`](https://github.com/cvan20191) made their first contribution in [anthropics/claude-code-action#1277](https://redirect.github.com/anthropics/claude-code-action/pull/1277)
> * [`@​Jerry2003826`](https://github.com/Jerry2003826) made their first contribution in [anthropics/claude-code-action#1255](https://redirect.github.com/anthropics/claude-code-action/pull/1255)
> * [`@​krislavten`](https://github.com/krislavten) made their first contribution in [anthropics/claude-code-action#1144](https://redirect.github.com/anthropics/claude-code-action/pull/1144)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.123>
>
> v1.0.122
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.122>
>
> v1.0.121
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.121>
>
> v1.0.120
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.120>


Commits

* [`51ea8ea`](anthropics/claude-code-action@51ea8ea) chore: bump Claude Code to 2.1.142 and Agent SDK to 0.3.142
* [`acfa366`](anthropics/claude-code-action@acfa366) chore: bump pinned Bun to 1.3.14 ([#1312](https://redirect.github.com/anthropics/claude-code-action/issues/1312))
* [`9eb125a`](anthropics/claude-code-action@9eb125a) fix: handle non-user actors (e.g. Copilot) in permission and actor checks ([#1](https://redirect.github.com/anthropics/claude-code-action/issues/1)...
* [`1450f65`](anthropics/claude-code-action@1450f65) fix: write execution file when SDK throws ([#1255](https://redirect.github.com/anthropics/claude-code-action/issues/1255))
* [`0756f6e`](anthropics/claude-code-action@0756f6e) fix: exclude .claude-pr snapshot from git staging ([#1277](https://redirect.github.com/anthropics/claude-code-action/issues/1277))
* [`f4d6a11`](anthropics/claude-code-action@f4d6a11) fix: dereference symlinks when snapshotting sensitive paths to .claude-pr/ (#...
* [`bf6d40e`](anthropics/claude-code-action@bf6d40e) fix: allow , in branch names ([#1310](https://redirect.github.com/anthropics/claude-code-action/issues/1310))
* [`86eb26b`](anthropics/claude-code-action@86eb26b) chore: bump Claude Code to 2.1.141 and Agent SDK to 0.2.141
* [`f4fb5c6`](anthropics/claude-code-action@f4fb5c6) chore: bump Claude Code to 2.1.140 and Agent SDK to 0.2.140
* [`dde2242`](anthropics/claude-code-action@dde2242) chore: bump Claude Code to 2.1.139 and Agent SDK to 0.2.139
* See full diff in [compare view](anthropics/claude-code-action@476e359...51ea8ea)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=anthropics/claude-code-action&package-manager=github\_actions&previous-version=1.0.119&new-version=1.0.123)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore  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)
- `@dependabot ignore  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)
- `@dependabot ignore ` 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)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
mergify Bot added a commit that referenced this pull request Jul 26, 2026
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) and [actions/setup-java](https://github.com/actions/setup-java).
Updates `actions/checkout` from 7.0.0 to 7.0.1
Release notes

*Sourced from [actions/checkout's releases](https://github.com/actions/checkout/releases).*

> v7.0.1
> ------
>
> What's Changed
> --------------
>
> * skip running unsafe pr check if input is default by [`@​aiqiaoy`](https://github.com/aiqiaoy) in [actions/checkout#2518](https://redirect.github.com/actions/checkout/pull/2518)
> * trim only ascii whitespace for branch by [`@​aiqiaoy`](https://github.com/aiqiaoy) in [actions/checkout#2521](https://redirect.github.com/actions/checkout/pull/2521)
> * escape values passed to --unset by [`@​aiqiaoy`](https://github.com/aiqiaoy) in [actions/checkout#2530](https://redirect.github.com/actions/checkout/pull/2530)
> * Various dependency updates
>
> **Full Changelog**: <actions/checkout@v7...v7.0.1>


Changelog

*Sourced from [actions/checkout's changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md).*

> Changelog
> =========
>
> v7.0.1
> ------
>
> * Skip running unsafe pr check if input is default by [`@​aiqiaoy`](https://github.com/aiqiaoy) in [actions/checkout#2518](https://redirect.github.com/actions/checkout/pull/2518)
> * Trim only ascii whitespace for branch by [`@​aiqiaoy`](https://github.com/aiqiaoy) in [actions/checkout#2521](https://redirect.github.com/actions/checkout/pull/2521)
> * Escape values passed to --unset by [`@​aiqiaoy`](https://github.com/aiqiaoy) in [actions/checkout#2530](https://redirect.github.com/actions/checkout/pull/2530)
> * Various dependency updates
>
> v7.0.0
> ------
>
> * Block checking out fork PR for pull\_request\_target and workflow\_run by [`@​aiqiaoy`](https://github.com/aiqiaoy) in [actions/checkout#2454](https://redirect.github.com/actions/checkout/pull/2454)
> * Various dependency updates
>
> v6.0.3
> ------
>
> * Fix checkout init for SHA-256 repositories by [`@​yaananth`](https://github.com/yaananth) in [actions/checkout#2439](https://redirect.github.com/actions/checkout/pull/2439)
> * fix: expand merge commit SHA regex and add SHA-256 test cases by [`@​yaananth`](https://github.com/yaananth) in [actions/checkout#2414](https://redirect.github.com/actions/checkout/pull/2414)
>
> v6.0.2
> ------
>
> * Fix tag handling: preserve annotations and explicit fetch-tags by [`@​ericsciple`](https://github.com/ericsciple) in [actions/checkout#2356](https://redirect.github.com/actions/checkout/pull/2356)
>
> v6.0.1
> ------
>
> * Add worktree support for persist-credentials includeIf by [`@​ericsciple`](https://github.com/ericsciple) in [actions/checkout#2327](https://redirect.github.com/actions/checkout/pull/2327)
>
> v6.0.0
> ------
>
> * Persist creds to a separate file by [`@​ericsciple`](https://github.com/ericsciple) in [actions/checkout#2286](https://redirect.github.com/actions/checkout/pull/2286)
> * Update README to include Node.js 24 support details and requirements by [`@​salmanmkc`](https://github.com/salmanmkc) in [actions/checkout#2248](https://redirect.github.com/actions/checkout/pull/2248)
>
> v5.0.1
> ------
>
> * Port v6 cleanup to v5 by [`@​ericsciple`](https://github.com/ericsciple) in [actions/checkout#2301](https://redirect.github.com/actions/checkout/pull/2301)
>
> v5.0.0
> ------
>
> * Update actions checkout to use node 24 by [`@​salmanmkc`](https://github.com/salmanmkc) in [actions/checkout#2226](https://redirect.github.com/actions/checkout/pull/2226)
>
> v4.3.1
> ------
>
> * Port v6 cleanup to v4 by [`@​ericsciple`](https://github.com/ericsciple) in [actions/checkout#2305](https://redirect.github.com/actions/checkout/pull/2305)
>
> v4.3.0
> ------
>
> * docs: update README.md by [`@​motss`](https://github.com/motss) in [actions/checkout#1971](https://redirect.github.com/actions/checkout/pull/1971)
> * Add internal repos for checking out multiple repositories by [`@​mouismail`](https://github.com/mouismail) in [actions/checkout#1977](https://redirect.github.com/actions/checkout/pull/1977)
> * Documentation update - add recommended permissions to Readme by [`@​benwells`](https://github.com/benwells) in [actions/checkout#2043](https://redirect.github.com/actions/checkout/pull/2043)
> * Adjust positioning of user email note and permissions heading by [`@​joshmgross`](https://github.com/joshmgross) in [actions/checkout#2044](https://redirect.github.com/actions/checkout/pull/2044)
> * Update README.md by [`@​nebuk89`](https://github.com/nebuk89) in [actions/checkout#2194](https://redirect.github.com/actions/checkout/pull/2194)
> * Update CODEOWNERS for actions by [`@​TingluoHuang`](https://github.com/TingluoHuang) in [actions/checkout#2224](https://redirect.github.com/actions/checkout/pull/2224)
> * Update package dependencies by [`@​salmanmkc`](https://github.com/salmanmkc) in [actions/checkout#2236](https://redirect.github.com/actions/checkout/pull/2236)
>
> v4.2.2
> ------
>
> * `url-helper.ts` now leverages well-known environment variables by [`@​jww3`](https://github.com/jww3) in [actions/checkout#1941](https://redirect.github.com/actions/checkout/pull/1941)
> * Expand unit test coverage for `isGhes` by [`@​jww3`](https://github.com/jww3) in [actions/checkout#1946](https://redirect.github.com/actions/checkout/pull/1946)
>
> v4.2.1
> ------
>
> * Check out other refs/\* by commit if provided, fall back to ref by [`@​orhantoy`](https://github.com/orhantoy) in [actions/checkout#1924](https://redirect.github.com/actions/checkout/pull/1924)

... (truncated)


Commits

* [`3d3c42e`](actions/checkout@3d3c42e) prep v7.0.1 release ([#2531](https://redirect.github.com/actions/checkout/issues/2531))
* [`2880268`](actions/checkout@2880268) escape values passed to --unset ([#2530](https://redirect.github.com/actions/checkout/issues/2530))
* [`12cd223`](actions/checkout@12cd223) trim only ascii whitespace for branch ([#2521](https://redirect.github.com/actions/checkout/issues/2521))
* [`62661c4`](actions/checkout@62661c4) skip running unsafe pr check if input is default ([#2518](https://redirect.github.com/actions/checkout/issues/2518))
* [`e8d4307`](actions/checkout@e8d4307) Bump the minor-actions-dependencies group with 2 updates ([#2499](https://redirect.github.com/actions/checkout/issues/2499))
* [`631c942`](actions/checkout@631c942) eslint 9 ([#2474](https://redirect.github.com/actions/checkout/issues/2474))
* [`4f1f4ae`](actions/checkout@4f1f4ae) Bump actions/upload-artifact from 4 to 7 ([#2476](https://redirect.github.com/actions/checkout/issues/2476))
* [`ba09753`](actions/checkout@ba09753) Bump actions/checkout from 6 to 7 ([#2488](https://redirect.github.com/actions/checkout/issues/2488))
* [`b9e0990`](actions/checkout@b9e0990) Bump docker/login-action from 3.3.0 to 4.2.0 ([#2479](https://redirect.github.com/actions/checkout/issues/2479))
* [`e8cb398`](actions/checkout@e8cb398) Bump docker/build-push-action from 6.5.0 to 7.2.0 ([#2478](https://redirect.github.com/actions/checkout/issues/2478))
* Additional commits viewable in [compare view](actions/checkout@9c091bb...3d3c42e)
  
Updates `anthropics/claude-code-action` from 1.0.171 to 1.0.183
Release notes

*Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).*

> v1.0.183
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.183>
>
> v1.0.182
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.182>
>
> v1.0.181
> --------
>
> What's Changed
> --------------
>
> * fix: share one exchanged WIF credential across spawned Claude processes by [`@​KeisukeYamashita`](https://github.com/KeisukeYamashita) in [anthropics/claude-code-action#1407](https://redirect.github.com/anthropics/claude-code-action/pull/1407)
>
> New Contributors
> ----------------
>
> * [`@​KeisukeYamashita`](https://github.com/KeisukeYamashita) made their first contribution in [anthropics/claude-code-action#1407](https://redirect.github.com/anthropics/claude-code-action/pull/1407)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.181>
>
> v1.0.180
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.180>
>
> v1.0.179
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.179>
>
> v1.0.178
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.178>
>
> v1.0.177
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.177>
>
> v1.0.176
> --------
>
> What's Changed
> --------------
>
> * docs: fix dead example links in custom-automations.md by [`@​evol1228`](https://github.com/evol1228) in [anthropics/claude-code-action#1513](https://redirect.github.com/anthropics/claude-code-action/pull/1513)
> * test: cover prepareContext validation error branches by [`@​farmer-data`](https://github.com/farmer-data) in [anthropics/claude-code-action#1460](https://redirect.github.com/anthropics/claude-code-action/pull/1460)
> * fix: sanitize {{label}} in branch name templates by [`@​pa-arth`](https://github.com/pa-arth) in [anthropics/claude-code-action#1492](https://redirect.github.com/anthropics/claude-code-action/pull/1492)
> * fix(sanitizer): strip alt text from reference-style markdown images by [`@​HumphreySun98`](https://github.com/HumphreySun98) in [anthropics/claude-code-action#1488](https://redirect.github.com/anthropics/claude-code-action/pull/1488)
> * fix: map claude\_args model to SDK options by [`@​Epochex`](https://github.com/Epochex) in [anthropics/claude-code-action#1474](https://redirect.github.com/anthropics/claude-code-action/pull/1474)
> * fix: allow leading underscore in branch names (valid per git-check-ref-format) by [`@​riley-mete-db`](https://github.com/riley-mete-db) in [anthropics/claude-code-action#1486](https://redirect.github.com/anthropics/claude-code-action/pull/1486)
> * fix(format): filter out thinking\_tokens system messages from step summary by [`@​anishesg`](https://github.com/anishesg) in [anthropics/claude-code-action#1479](https://redirect.github.com/anthropics/claude-code-action/pull/1479)
> * docs: map custom\_instructions to --append-system-prompt ([#1480](https://redirect.github.com/anthropics/claude-code-action/issues/1480)) by [`@​farmer-data`](https://github.com/farmer-data) in [anthropics/claude-code-action#1484](https://redirect.github.com/anthropics/claude-code-action/pull/1484)
> * fix: handle null comment/review author from deleted accounts by [`@​pa-arth`](https://github.com/pa-arth) in [anthropics/claude-code-action#1490](https://redirect.github.com/anthropics/claude-code-action/pull/1490)
>
> New Contributors
> ----------------
>
> * [`@​evol1228`](https://github.com/evol1228) made their first contribution in [anthropics/claude-code-action#1513](https://redirect.github.com/anthropics/claude-code-action/pull/1513)
> * [`@​pa-arth`](https://github.com/pa-arth) made their first contribution in [anthropics/claude-code-action#1492](https://redirect.github.com/anthropics/claude-code-action/pull/1492)
> * [`@​HumphreySun98`](https://github.com/HumphreySun98) made their first contribution in [anthropics/claude-code-action#1488](https://redirect.github.com/anthropics/claude-code-action/pull/1488)
> * [`@​Epochex`](https://github.com/Epochex) made their first contribution in [anthropics/claude-code-action#1474](https://redirect.github.com/anthropics/claude-code-action/pull/1474)
> * [`@​riley-mete-db`](https://github.com/riley-mete-db) made their first contribution in [anthropics/claude-code-action#1486](https://redirect.github.com/anthropics/claude-code-action/pull/1486)
> * [`@​anishesg`](https://github.com/anishesg) made their first contribution in [anthropics/claude-code-action#1479](https://redirect.github.com/anthropics/claude-code-action/pull/1479)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.176>
>
> v1.0.175
> --------

... (truncated)


Commits

* [`be7b93b`](anthropics/claude-code-action@be7b93b) chore: bump Claude Code to 2.1.220 and Agent SDK to 0.3.220
* [`e0cf66d`](anthropics/claude-code-action@e0cf66d) chore: bump Claude Code to 2.1.219 and Agent SDK to 0.3.219
* [`44423bd`](anthropics/claude-code-action@44423bd) chore: bump Claude Code to 2.1.218 and Agent SDK to 0.3.218
* [`b00a341`](anthropics/claude-code-action@b00a341) fix: share one exchanged WIF credential across spawned Claude processes ([#1407](https://redirect.github.com/anthropics/claude-code-action/issues/1407))
* [`fa7e2f0`](anthropics/claude-code-action@fa7e2f0) chore: bump Claude Code to 2.1.217 and Agent SDK to 0.3.217
* [`b76a077`](anthropics/claude-code-action@b76a077) chore: bump Claude Code to 2.1.216 and Agent SDK to 0.3.216
* [`af0559e`](anthropics/claude-code-action@af0559e) chore: bump Claude Code to 2.1.215 and Agent SDK to 0.3.215
* [`3553f84`](anthropics/claude-code-action@3553f84) chore: bump Claude Code to 2.1.214 and Agent SDK to 0.3.214
* [`700e7f8`](anthropics/claude-code-action@700e7f8) chore: bump Claude Code to 2.1.212 and Agent SDK to 0.3.212
* [`3e807ec`](anthropics/claude-code-action@3e807ec) fix: handle null comment/review author from deleted accounts ([#1490](https://redirect.github.com/anthropics/claude-code-action/issues/1490))
* Additional commits viewable in [compare view](anthropics/claude-code-action@e90deca...be7b93b)
  
Updates `actions/setup-java` from 5.5.0 to 5.6.0
Release notes

*Sourced from [actions/setup-java's releases](https://github.com/actions/setup-java/releases).*

> v5.6.0
> ------
>
> What's Changed
> --------------
>
> * Backport to v5: Add Maven compiler problem matcher for javac diagnostics by [`@​brunoborges`](https://github.com/brunoborges) in [actions/setup-java#1087](https://redirect.github.com/actions/setup-java/pull/1087)
> * feat: expose cache-primary-key output ([#597](https://redirect.github.com/actions/setup-java/issues/597)) [v5 backport] by [`@​brunoborges`](https://github.com/brunoborges) in [actions/setup-java#1089](https://redirect.github.com/actions/setup-java/pull/1089)
> * dist: Cover Tencent Kona JDK 25 ([#1108](https://redirect.github.com/actions/setup-java/issues/1108)) [v5 backport] by [`@​brunoborges`](https://github.com/brunoborges) in [actions/setup-java#1110](https://redirect.github.com/actions/setup-java/pull/1110)
> * Backport [#1111](https://redirect.github.com/actions/setup-java/issues/1111): Preserve Maven toolchains across repeated setup-java runs ([#1099](https://redirect.github.com/actions/setup-java/issues/1099)) by [`@​brunoborges`](https://github.com/brunoborges) in [actions/setup-java#1113](https://redirect.github.com/actions/setup-java/pull/1113)
> * Backport [#1097](https://redirect.github.com/actions/setup-java/issues/1097)/[#1098](https://redirect.github.com/actions/setup-java/issues/1098) to v5: cache Maven and Gradle wrapper distributions separately by [`@​brunoborges`](https://github.com/brunoborges) in [actions/setup-java#1122](https://redirect.github.com/actions/setup-java/pull/1122)
>
> **Full Changelog**: <actions/setup-java@v5...v5.6.0>


Commits

* [`03ad4de`](actions/setup-java@03ad4de) Backport [#1097](https://redirect.github.com/actions/setup-java/issues/1097)/[#1098](https://redirect.github.com/actions/setup-java/issues/1098): cache Maven and Gradle wrapper distributions separately...
* [`d229d2e`](actions/setup-java@d229d2e) Backport [#1111](https://redirect.github.com/actions/setup-java/issues/1111): Preserve Maven toolchains across repeated setup-java runs ([#1](https://redirect.github.com/actions/setup-java/issues/1)...
* [`bbf0f69`](actions/setup-java@bbf0f69) dist: Cover Tencent Kona JDK 25 ([#1110](https://redirect.github.com/actions/setup-java/issues/1110))
* [`513edc4`](actions/setup-java@513edc4) feat: expose cache-primary-key output ([#597](https://redirect.github.com/actions/setup-java/issues/597)) [v5 backport] ([#1089](https://redirect.github.com/actions/setup-java/issues/1089))
* [`62df799`](actions/setup-java@62df799) Add Maven compiler problem matcher for javac diagnostics ([#1087](https://redirect.github.com/actions/setup-java/issues/1087))
* [`176156a`](actions/setup-java@176156a) chore: bump version to 5.6.0 for v5 release line
* [`bf7b8de`](actions/setup-java@bf7b8de) build: rebuild dist for backported changes ([#1079](https://redirect.github.com/actions/setup-java/issues/1079), [#1083](https://redirect.github.com/actions/setup-java/issues/1083), [#1084](https://redirect.github.com/actions/setup-java/issues/1084))
* [`0173e6d`](actions/setup-java@0173e6d) Infer distribution from asdf .tool-versions vendor prefix ([#1084](https://redirect.github.com/actions/setup-java/issues/1084))
* [`f45cd82`](actions/setup-java@f45cd82) Rename jdkFile input to jdk-file with deprecated alias ([#1083](https://redirect.github.com/actions/setup-java/issues/1083))
* [`e2863ad`](actions/setup-java@e2863ad) Map Zulu x86 architecture to i686 for Azul Metadata API ([#1079](https://redirect.github.com/actions/setup-java/issues/1079))
* Additional commits viewable in [compare view](actions/setup-java@0f481fc...03ad4de)
  
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore  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)
- `@dependabot ignore  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)
- `@dependabot ignore ` 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)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant