Skip to content

Bump actions/download-artifact from 4 to 7#1

Merged
qin-ctx merged 1 commit intomainfrom
dependabot/github_actions/actions/download-artifact-7
Jan 29, 2026
Merged

Bump actions/download-artifact from 4 to 7#1
qin-ctx merged 1 commit intomainfrom
dependabot/github_actions/actions/download-artifact-7

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 29, 2026

Bumps actions/download-artifact from 4 to 7.

Release notes

Sourced from actions/download-artifact's releases.

v7.0.0

v7 - What's new

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

Node.js 24

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

What's Changed

New Contributors

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

v6.0.0

What's Changed

BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but we're treating it as such.

New Contributors

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

v5.0.0

What's Changed

v5.0.0

🚨 Breaking Change

This release fixes an inconsistency in path behavior for single artifact downloads by ID. If you're downloading single artifacts by ID, the output path may change.

What Changed

... (truncated)

Commits
  • 37930b1 Merge pull request #452 from actions/download-artifact-v7-release
  • 72582b9 doc: update readme
  • 0d2ec9d chore: release v7.0.0 for Node.js 24 support
  • fd7ae8f Merge pull request #451 from actions/fix-storage-blob
  • d484700 chore: restore minimatch.dep.yml license file
  • 03a8080 chore: remove obsolete dependency license files
  • 56fe6d9 chore: update @​actions/artifact license file to 5.0.1
  • 8e3ebc4 chore: update package-lock.json with @​actions/artifact@​5.0.1
  • 1e3c4b4 fix: update @​actions/artifact to ^5.0.0 for Node.js 24 punycode fix
  • 458627d chore: use local @​actions/artifact package for Node.js 24 testing
  • Additional commits viewable in compare view

Dependabot compatibility score

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


Dependabot commands and 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)
  • @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)
  • @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)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4...v7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 29, 2026

Labels

The following labels could not be found: dependencies, github-actions. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@qin-ctx qin-ctx merged commit 498d28b into main Jan 29, 2026
2 of 21 checks passed
@dependabot dependabot bot deleted the dependabot/github_actions/actions/download-artifact-7 branch January 29, 2026 12:49
A11en0 referenced this pull request in A11en0/OpenViking Feb 5, 2026
…xpansion

- Remove _should_use_deep_search and find() auto-selection
- Always use search() with session for IntentAnalyzer
- Add _expand_query() to expand Chinese queries with English keywords
- Example: 'OpenViking 怎么安装' → 'OpenViking 怎么安装 installation setup install pip'
- Installation doc now ranks #1 (was not in top 5 before)
qin-ctx pushed a commit that referenced this pull request Feb 6, 2026
* feat: add Memex personal knowledge assistant demo

- CLI-based personal knowledge assistant powered by OpenViking
- Knowledge management: add files, directories, URLs
- Intelligent Q&A with RAG and multi-turn conversation
- Knowledge browsing with L0/L1/L2 context layers
- Semantic search with intent analysis
- Feishu/Lark MCP integration for document import
- Rich CLI interface with prompt_toolkit

* fix: fix Memex bugs in tree display and RAG config loading

- Fix /tree command to handle dict list return type
- Fix RAG recipe to load LLM config from ov.conf instead of removed attributes
- Fix find/search methods to use 'limit' parameter instead of 'top_k'

* fix: fix URI path handling in abstract/overview commands

- Strip trailing slashes from URIs to prevent path errors
- Improve tree display to handle dict list return type

* feat: improve Memex directory support and cleanup

- Add recursive directory import with file type filtering
- Improve error handling for add_resource results
- Add proper cleanup on exit to kill AGFS processes
- Fix import_dir to use new directory handling logic

* fix: improve RAG retrieval by lowering score threshold and reading full content

- Lower default score_threshold from 0.3 to 0.1 (actual scores are 0.17-0.25)
- Fix build_context to use client.read() for full content instead of just abstract
- This fixes the issue where queries returned no results despite data being indexed

* feat: add Tier 1 RAG improvements - query rewriting, confidence hints, smart context loading

* feat: add Tier 2 RAG improvements - Session integration, memory extraction, hybrid search, rerank

- P0: Integrate OpenViking Session for context-aware search with IntentAnalyzer
- P1: Add session.commit() for long-term memory extraction (6 categories)
- P2: Implement hybrid search strategy (find for simple, search for complex)
- P3: Add LLM-based rerank for improved result relevance

New CLI commands: /session, /commit, /memories

* fix: fix content retrieval in _process_search_results

- abstract() only works for directories, not files
- Changed to try read() first, then abstract() for directories
- This fixes the issue where only 1 result was returned instead of 5

* refactor: simplify RAG recipe - remove dual thresholds and rerank

- Remove high_confidence_threshold and low_confidence_threshold
- Remove rerank (use OpenViking score directly)
- Remove confidence hints from system prompt
- Unified content loading: all results get full content (2000 chars)
- Simpler build_context without confidence logic

* feat: improve intent understanding - always use deep search + query expansion

- Remove _should_use_deep_search and find() auto-selection
- Always use search() with session for IntentAnalyzer
- Add _expand_query() to expand Chinese queries with English keywords
- Example: 'OpenViking 怎么安装' → 'OpenViking 怎么安装 installation setup install pip'
- Installation doc now ranks #1 (was not in top 5 before)

* docs: update memex README with architecture details, remove redundant query expansion

* fix: address PR review feedback

- Add wait_processed() after session commit for memory embedding
- Add OpenAI api_base default (https://api.openai.com/v1)
- Remove [:2000] content truncation that caused unexpected results
MaojiaSheng pushed a commit that referenced this pull request Feb 21, 2026
…or local dev (#237)

* feat: add Memex personal knowledge assistant demo

- CLI-based personal knowledge assistant powered by OpenViking
- Knowledge management: add files, directories, URLs
- Intelligent Q&A with RAG and multi-turn conversation
- Knowledge browsing with L0/L1/L2 context layers
- Semantic search with intent analysis
- Feishu/Lark MCP integration for document import
- Rich CLI interface with prompt_toolkit

* fix: fix Memex bugs in tree display and RAG config loading

- Fix /tree command to handle dict list return type
- Fix RAG recipe to load LLM config from ov.conf instead of removed attributes
- Fix find/search methods to use 'limit' parameter instead of 'top_k'

* fix: fix URI path handling in abstract/overview commands

- Strip trailing slashes from URIs to prevent path errors
- Improve tree display to handle dict list return type

* feat: improve Memex directory support and cleanup

- Add recursive directory import with file type filtering
- Improve error handling for add_resource results
- Add proper cleanup on exit to kill AGFS processes
- Fix import_dir to use new directory handling logic

* fix: improve RAG retrieval by lowering score threshold and reading full content

- Lower default score_threshold from 0.3 to 0.1 (actual scores are 0.17-0.25)
- Fix build_context to use client.read() for full content instead of just abstract
- This fixes the issue where queries returned no results despite data being indexed

* feat: add Tier 1 RAG improvements - query rewriting, confidence hints, smart context loading

* feat: add Tier 2 RAG improvements - Session integration, memory extraction, hybrid search, rerank

- P0: Integrate OpenViking Session for context-aware search with IntentAnalyzer
- P1: Add session.commit() for long-term memory extraction (6 categories)
- P2: Implement hybrid search strategy (find for simple, search for complex)
- P3: Add LLM-based rerank for improved result relevance

New CLI commands: /session, /commit, /memories

* fix: fix content retrieval in _process_search_results

- abstract() only works for directories, not files
- Changed to try read() first, then abstract() for directories
- This fixes the issue where only 1 result was returned instead of 5

* refactor: simplify RAG recipe - remove dual thresholds and rerank

- Remove high_confidence_threshold and low_confidence_threshold
- Remove rerank (use OpenViking score directly)
- Remove confidence hints from system prompt
- Unified content loading: all results get full content (2000 chars)
- Simpler build_context without confidence logic

* feat: improve intent understanding - always use deep search + query expansion

- Remove _should_use_deep_search and find() auto-selection
- Always use search() with session for IntentAnalyzer
- Add _expand_query() to expand Chinese queries with English keywords
- Example: 'OpenViking 怎么安装' → 'OpenViking 怎么安装 installation setup install pip'
- Installation doc now ranks #1 (was not in top 5 before)

* docs: update memex README with architecture details, remove redundant query expansion

* fix: address PR review feedback

- Add wait_processed() after session commit for memory embedding
- Add OpenAI api_base default (https://api.openai.com/v1)
- Remove [:2000] content truncation that caused unexpected results

* feat: add --verbose flag, fix README quick start

- Add -v/--verbose flag to control logging (default: off)
- Fix Quick Start: add cd examples/memex step
- Update CLI Options to match actual parameters

* fix(memex): add build-system and use relative imports so 'uv run memex' works

pyproject.toml was missing [build-system], causing uv to skip entry point
installation. Also fixed entry point from 'cli:main' to 'memex.cli:main'
and converted all bare imports to relative imports. Updated README to
match actual project structure.

* fix(memex): suppress openviking INFO logs in non-verbose mode

openviking creates per-module loggers with their own handlers and
propagate=False, making root logger level ineffective. Patch get_logger
to enforce WARNING level for all current and future openviking loggers.

* feat(memex): add full Feishu OAuth support and fix tool invocation

- Implement OAuth 2.0 authorization code flow for user access token
- Add support for manual code entry (for headless/SSH environments)
- Fix tool names (underscore format) and parameter structure (nested)
- Replace MCP file listing with REST API search (bypassing MCP limitations)
- Add /feishu-login and improve /feishu-list commands

* feat(memex): add /feishu-ls command for directory browsing

- Implement /feishu-ls using drive.v1.file.list API
- Allows browsing user's 'My Space' (root) and subfolders
- Requires user access token via /feishu-login
- Updated docs with redirect URI configuration step

* fix(memex): auto-resolve root folder token when folder_token is empty

* fix(memex): adapt memex for local dev with OpenAI provider

- Fix VLM backend config fallback (provider field support)
- Use find() instead of search() to avoid IntentAnalyzer deadlock
- Add uv source override for local openviking editable install
- Replace deleted logger monkey-patch with standard logging
- Update README: add missing commands, OpenAI config example, fix structure

* refactor(memex): switch back to client.search() for multi-type retrieval

* fix(async): make run_async re-entrant safe to prevent deadlock

Session methods call run_async() from within code already running on
the shared background event loop, causing a deadlock when search() is
used with session context. Fix by detecting a running event loop via
asyncio.get_running_loop() and spawning a temporary thread+loop for
the nested coroutine.
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