Skip to content

chore(deps): bump actions/download-artifact from 6 to 7 in the gha-dependencies group#1

Closed
dependabot[bot] wants to merge 21 commits intomainfrom
dependabot/github_actions/gha-dependencies-d988a0d7e8
Closed

chore(deps): bump actions/download-artifact from 6 to 7 in the gha-dependencies group#1
dependabot[bot] wants to merge 21 commits intomainfrom
dependabot/github_actions/gha-dependencies-d988a0d7e8

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Feb 18, 2026

Bumps the gha-dependencies group with 1 update: actions/download-artifact.

Updates actions/download-artifact from 6 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

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

dominikpeter and others added 21 commits February 17, 2026 21:36
Full implementation of the retrAI autonomous agent system:

Backend (Python):
- LangGraph StateGraph: plan → act → evaluate → human_check cycle
- Generic goal system: pytest, shell-goal, perf-check, sql-benchmark
- YAML-driven .retrai.yml config for custom goals
- Async tool layer: bash_exec, file_read/write/list, pytest_runner
- AsyncEventBus with fan-out (WebSocket + TUI + logger)
- FastAPI server: REST runs API + WebSocket event streaming
- Typer CLI: retrai run/serve/tui
- Textual TUI with gradient ASCII logo

Frontend (Vue 3 + bun):
- Vue Flow agent graph with animated active node
- Pinia stores (run + events), WebSocket composable
- RunControls, GoalStatus, EventLog, HumanCheckModal
- Purple → dark-blue gradient theme

Quality:
- 100 tests (pytest), 0 ruff errors, 0 pyright errors
- MkDocs docs with custom purple gradient theme

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Add node_modules, frontend/dist, and .pytest_report.json to .gitignore.
Remove already-tracked node_modules from the index.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Add _safe_resolve() helper to file_read.py and file_write.py
- Prevents path traversal attacks (e.g. ../../etc/passwd)
- Fix AsyncGenerator return type in test_server.py for pyright
…ix, Makefile

- New file_patch tool for surgical text replacement (find & replace)
- Token/cost tracking: llm_usage events emitted after every LLM call
- AgentState now tracks total_tokens across iterations
- Frontend: all 11 goals in RunControls dropdown
- Frontend: token display in GoalStatus, llm_usage in EventLog
- CI: Python 3.12/3.13/3.14 matrix + frontend typecheck job
- Makefile with test/lint/typecheck/check/dev/serve targets
- __init__.py __all__ exports, frontend check script
- 13 new tests for path traversal + file_patch (113 total)
- pyright: 0 errors, ruff: all clean
- tui command no longer requires GOAL argument, auto-detects like run
- Added --api-key/-k and --api-base to both run and tui commands
- Supports Anthropic, OpenAI, Gemini, Azure, Ollama, vLLM via LiteLLM
- Added --hitl flag to tui command
- retrai tui/run now loads .retrai.yml if present
- When no config exists, prompts user to pick AI provider & model
- Supports: Anthropic, OpenAI, Gemini, Azure, Ollama, custom
- Prompts for API key if not in env, saves model to .retrai.yml
- CLI flags always override config file values
- Deduplicated run/tui logic into shared _resolve_config()
- Models are now fetched at runtime from litellm.model_cost
- No more hardcoded model lists that go stale
- Prefers -latest variants, deduplicates, and ranks smartly
- New retrai/providers/copilot_auth.py: full device OAuth flow,
  token exchange via copilot_internal/v2/token, caching in
  ~/.local/share/retrai/auth.json, auto-refresh before expiry
- Interactive setup: selecting Copilot opens browser for device code
- _resolve_config: auto-injects Copilot token as OPENAI_API_KEY
  pointing at api.githubcopilot.com for LiteLLM compatibility
- Supports all models available on Copilot subscription (Claude,
  GPT, Gemini, etc.)
- Rewrote system prompt: emphasizes NEVER giving up, trying
  alternatives, using web_search, executing scripts
- Added web_search tool (DuckDuckGo with fallback to API)
- Improved evaluate node: tells AI how many iterations remain,
  lists alternative strategies to try
- Increased default max_iterations from 20 to 50
- Increased bash timeout from 60s to 120s
- Increased message context window from 40 to 60
- .github/workflows/publish.yml: trusted publishing pipeline
  (build → test → TestPyPI → PyPI on release)
- pyproject.toml: classifiers, keywords, URLs, license,
  httpx dep, search extra, py.typed marker
- retrai/py.typed: PEP 561 typed package marker
…ing)

- Add authors metadata and Documentation URL to pyproject.toml
- Add dedicated Installation section to README (pipx, uv tool, pip)
- Add Python 3.14 to publish.yml test matrix
- Add wheel smoke-test step (install + retrai --help) before publishing
…y, TUI wizard, and research goal

- Add new tools: visualize, hypothesis_test, data_analysis, dataset_fetch, python_exec, js_exec, grep_search, find_files, git_diff
- Implement swarm module with role-based agent coordination
- Add pipeline mode for multi-step workflows
- Implement agent memory with semantic recall
- Add safety guardrails module
- Create TUI wizard for experiment setup
- Add research goal type for scientific workflows
- Implement benchmark, watcher, history, and review modules
- Wire new tools into plan and act nodes
- Add comprehensive unit tests (353 passing)
- Add retrai/tools/ml_train.py: sandboxed sklearn/XGBoost/LightGBM training (20+ models)
- Add retrai/goals/ml_goal.py: metric threshold goal (AUC, F1, accuracy, R², RMSE, etc.)
- Register ml-optimize goal in registry
- Wire ml_train dispatch in act.py
- Add ml_train tool definition in plan.py
- Add 'retrai ml' CLI command for ML optimization runs
- Add 17 unit tests for ml_train and MlOptimizeGoal
- plan.py: 1015 → 362 lines (remove 653 dead inline tool defs)
- app.py: 1186 → ~900 lines (extract runners to cli/runners.py)
- Narrow 26× except Exception → except NoMatches in TUI
- Narrow config.py exceptions to ImportError/AttributeError/OSError
- Add Code Quality Standards section to agents.md
…pendabot

- Add MIT LICENSE file
- Add CHANGELOG.md for initial 0.1.0 release
- Add cliff.toml for automated changelog generation
- Upgrade CI workflow: v6/v7 actions, workflow_dispatch, timeout-minutes
- Add docs deployment workflow (GitHub Pages via mkdocs)
- Add publish workflow with artifact attestation and GitHub Release
- Add dependabot config for quarterly GHA updates
- Fix 6 pyright errors in benchmark.py and watcher.py (RunnableConfig casts)
- Migrate ChatLiteLLM to langchain-litellm with fallback
- Add langchain-litellm dependency
- Pin pytest-asyncio<1.0.0 (1.x broken on Python 3.14)
- Add .claude/ and .gemini/ to .gitignore
- Remove .claude from tracking
Bumps the gha-dependencies group with 1 update: [actions/download-artifact](https://github.com/actions/download-artifact).


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

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Feb 18, 2026
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Feb 18, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot Bot deleted the dependabot/github_actions/gha-dependencies-d988a0d7e8 branch February 18, 2026 16:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant