Skip to content

chore(ci): bump docker/login-action from 3 to 4#5

Closed
dependabot[bot] wants to merge 1257 commits into
developfrom
dependabot/github_actions/docker/login-action-4
Closed

chore(ci): bump docker/login-action from 3 to 4#5
dependabot[bot] wants to merge 1257 commits into
developfrom
dependabot/github_actions/docker/login-action-4

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Mar 14, 2026

Bumps docker/login-action from 3 to 4.

Release notes

Sourced from docker/login-action's releases.

v4.0.0

Full Changelog: docker/login-action@v3.7.0...v4.0.0

v3.7.0

Full Changelog: docker/login-action@v3.6.0...v3.7.0

v3.6.0

Full Changelog: docker/login-action@v3.5.0...v3.6.0

v3.5.0

Full Changelog: docker/login-action@v3.4.0...v3.5.0

v3.4.0

Full Changelog: docker/login-action@v3.3.0...v3.4.0

... (truncated)

Commits
  • b45d80f Merge pull request #929 from crazy-max/node24
  • 176cb9c node 24 as default runtime
  • cad8984 Merge pull request #920 from docker/dependabot/npm_and_yarn/aws-sdk-dependenc...
  • 92cbcb2 chore: update generated content
  • 5a2d6a7 build(deps): bump the aws-sdk-dependencies group with 2 updates
  • 44512b6 Merge pull request #928 from docker/dependabot/npm_and_yarn/docker/actions-to...
  • 28737a5 chore: update generated content
  • dac0793 build(deps): bump @​docker/actions-toolkit from 0.76.0 to 0.77.0
  • 62029f3 Merge pull request #919 from docker/dependabot/npm_and_yarn/actions/core-3.0.0
  • 08c8f06 chore: update generated content
  • 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 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)

rett added 30 commits February 26, 2026 03:12
Create ai_mission_templates with JSONB phases, approval_gates, rejection_mappings,
skill_compositions columns. Add mission_template_id and custom_phases to ai_missions.
…solution

Ai::MissionTemplate provides phase sequences, approval gates, rejection mappings,
and gate names. Ai::Mission resolves phases from template with no hardcoded fallback.
RalphTask broadcasts status changes via MissionChannel for real-time updates.
Orchestrator resolves job classes, gate names, and rejection targets from template
phase config. New SkillCompositionService creates RalphLoop tasks from discovered
skills matched to template phases.
…oints

MissionTemplatesController with CRUD. Missions controller gains task_graph,
save_as_template, and compose_plan actions. Routes registered in AI namespace.
…ase types

Add React Flow task graph with RalphTaskNode/ApprovalGateNode, useMissionTaskGraph
hook with real-time WebSocket updates. Clickable PhaseTimeline with phase filtering.
Template selection step in NewMissionWizard. MissionPhase changed to string for
template-driven phases. Workflow Builder demoted in navigation order.
…ites

Add ai_mission_template factory with development/research/operations traits.
Update ai_mission factory to auto-assign templates. Rewrite mission model and
orchestrator specs for template-driven architecture. Stub WorkerJobService in
orchestrator and request specs.
… integration

Implement Situation-Task-Action-Result structured reasoning service that
forces explicit goal articulation before reasoning begins, surfacing
implicit constraints. Wire into AgentToolBridgeService alongside existing
chain-of-thought and plan-and-execute modes. Enhance SkillCompositionService
with STAR-refined phase queries for richer skill discovery. Fix pre-existing
bugs in find_or_create_ralph_loop! (stale loop_type attribute, invalid status).
MCP client agents are now transient — always created fresh per session,
archived on disconnect, and blocked from non-workspace teams. Fixes
stale agent accumulation and prevents misuse in missions/teams.
SSE streams held a checked-out DB connection for their entire lifetime
(hours/days), exhausting the pool and blocking all HTTP requests with
ConnectionTimeoutError. Now releases the connection after setup and
borrows briefly via with_connection for each keepalive ping.
Merge the separate Devops::Repository model into Devops::GitRepository
via 4-stage migration (add columns, migrate data, update FKs, drop table).
Update serializer, controllers, factories, and specs accordingly.
…lients

Delete Ai::Llm::Client, adapter factory, all provider adapters, and
Ai::ProviderClientService with its adapters. Replace with WorkerLlmClient
and WorkerEmbeddingClient that proxy LLM calls through the worker service.
Add AgentBackedService concern for shared proxy plumbing.
Migrate all AI services from direct Ai::Llm::Client / ProviderClientService
calls to WorkerLlmClient and WorkerEmbeddingClient. Services now delegate
LLM completions and embeddings to the worker process via HTTP.
…Service

Delete all server/app/jobs/ai/ job classes and their specs. These jobs
now run in the worker process; the server dispatches them via
WorkerJobService HTTP API calls.
Add internal API controllers for self-healing, ralph loops, trajectory,
and worktree sessions (worker → server callbacks). Update LLM proxy
controller to remove direct completion endpoints. Add provider_config
and embedding_config routes for worker credential resolution.
Add 12 AI job classes relocated from server (conversation, worktree,
ralph, self-healing, trajectory, merge, conflict detection). Expand
LlmProxyClient with direct provider calls using CredentialResolver.
Add AI service layer for worker-side LLM operations. Update Sidekiq
config with AI-specific queues and scheduled jobs.
Update test helpers, factories, and specs to use WorkerLlmClient stubs
instead of direct LLM client mocks. Add WorkerJobService stub helpers.
Update AI service specs for proxy-based LLM calls. Add MCP client
identity service spec.
…se submodule

Minor StepPlanReview UI adjustment, add AI utility agents seed,
update maintenance page, and update enterprise submodule pointer.
Use the repository's default_branch instead of the hardcoded column
default of "main" when creating missions. Prevents branch creation
failures on repos that use master or other default branches.
Add server/config/database.yml.example with pool default of 30.
Track .env.mcp.example, .env.production.example, and
.env.staging.example by adding !.env.*.example negation to
.gitignore. Update RAILS_MAX_THREADS to 10 in all env examples.
…r handling

ExtractionService called client.provider.name on WorkerLlmClient which
has nil provider when initialized with agent_id only — use provider_name
safe accessor instead. StreamableHttpController rescue ArgumentError was
catching parameter validation errors and silently returning null via
introspection fallback — scope to only catch unknown tool errors.
…alidation

Expand .gitleaks.toml allowlist from 12 to 21 path rules and 9 to 18
content regexes to suppress false positives from CI workflows, test
fixtures, seed data, and Docker configs. Add gitleaks as step 4/4 in
validate.sh with --skip-secrets flag. Add on-demand full-history scan
script for security audits across main repo and submodules.
Navigate to mission page with openApproval state flag so the
ApprovalGateModal auto-opens instead of just showing the mission detail
rett and others added 20 commits March 10, 2026 08:55
…odule

Skip cooldown check in llm_probability, agent_ensemble, and sentiment_analysis
when training? is true. Prevents false cooldown blocks in fast-tick training
mode where tick_interval (8s) < cooldown_seconds (15-60s). Exit checks and
position management remain unaffected.

Update trading submodule: settlement bypass, fee deduction, compounding
defaults, backtest pair registration, paper mode, category blacklist fix.
Bumps [docker/login-action](https://github.com/docker/login-action) from 3 to 4.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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

dependabot Bot commented on behalf of github Mar 14, 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.

@rett rett closed this Apr 19, 2026
@rett rett deleted the dependabot/github_actions/docker/login-action-4 branch April 19, 2026 19:43
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Apr 19, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

rett added a commit that referenced this pull request May 3, 2026
… previously stated

Earlier appendix incorrectly listed P0 #3, P0 #5, and P0 #6 as still
open. Re-checking against live code confirms all three are closed:

  P0 #3 — Idempotency token: tasks_controller#create accepts
          idempotency_key param + DB unique-by-account; the controller
          short-circuits on duplicate to return the existing task.

  P0 #5 — Account dependent cascade: account_decorator uses
          :restrict_with_error (not :destroy) for every system_*
          association that holds infrastructure state. Account deletion
          cannot orphan cloud resources without an explicit drain.

  P0 #6 — Azure provider: rewritten to use raw HTTP via Faraday 2,
          dropping the Track 1 SDK that pinned faraday <2.0. Loads
          cleanly via Rails.application.eager_load!.

Replaces the open-items list with a status table covering all 13
P0/P1/P2/P3 items from §5, separating "closed" / "partial" / "open" /
"deferred". 9 of 13 closed, 2 partial, 2 open, P3 deferred.
rett added a commit that referenced this pull request May 9, 2026
… plan

Bumps the system extension pointer from 1eefe41a7 → 5de5d61ca,
absorbing 13 submodule commits that land Phases 0–2 of the agent
stub implementation plan plus the github.com/nodealchemy org
migration:

Phase 0 — Shared infrastructure:
  refactor(agent): consolidate atomic-write into internal/fsutil
  feat(agent): phase 0 building blocks for stub implementation plan
  feat(system/server): agent fleet events ingestion endpoint

Phase 1 — Service-loop core (autonomous reconciliation + cert
rotation + task lease):
  feat(agent): rewrite oci.Puller for HTTP-driven streaming pull
  feat(agent): add Verifier interface + seccomp drop-in writer
  feat(agent): module reconciler goroutine + service wiring
  feat(agent): cert rotation goroutine + K3s applier doc finalize
  feat(system/server): /enroll/refresh + modules OCI metadata exposure
  feat(agent): task lease loop + handler registry
  feat(system/server): /status/tasks/:id show endpoint

Phase 2 — Operator CLI module lifecycle:
  feat(agent): phase 2 CLI module lifecycle (verify/update/sync/attach/detach/init)
  feat(system/server): /modules/:id/rsync_spec + module member routes

Path migration:
  chore: rename Go module + docs paths to github.com/nodealchemy

Stubs landed: 13 of 18 (#2 task lease, #3 cert rotation, #4 reconcile,
#5 verify, #6 update, #7 sync, #8 OCI pull, #9 cosign Verifier, #10
seccomp drop-in, #11 attach, #12 detach, #15 init, #18 K3s finalize).
Stubs remaining: #1 boot, #13 commit, #14 exec, #16 volume-setup,
#17 puppet apply (all in Phase 3 + 4).

Plan reference: ~/.claude/plans/find-stubs-in-powernde-agent-kind-lecun.md
rett added a commit that referenced this pull request May 12, 2026
…rchitectures (T2.A)

Brings in the submodule's canonicalization work — every
PackageRepository.architectures JSONB now stores canonical names from
the NodeArchitecture catalog (apt-convention: amd64, arm64, armhf,
i386, ppc64el, s390x, riscv64). Adapters translate to kind-specific
form at sync time via PackageRepository#architectures_for_kind.

Closes audit caveat #5 — cross-repo aggregation queries no longer
need per-kind normalization. Counter caches stay accurate via the
existing find_normalized resolution.

Parent's schema.rb regenerated to include the new
20260511180001_canonicalize_package_repository_architectures migration.
rett added a commit that referenced this pull request May 17, 2026
Three BaseJob children that fire from the Sidekiq cron and POST to
the system extension's /worker_api/* endpoints. The server side does
all the work; jobs are thin envelopes so retries + queue routing live
in the worker process and the server stays idempotent on the calling
side.

- FederationCapabilityAutoSyncJob — every 5min; sweeps auto-flow
  capabilities, dispatches per-row sync transport (P9.1)
- FederationAuditShipmentJob — daily at 04:30 UTC; WORM-ships
  FleetEvent rows older than 30d into sha256-addressed JSON-Lines
  (P9.2 + Social Contract #5)
- MigrationChainAdvanceJob — every 60s; advances each active chain
  by one hop per tick (cooperative scheduling so a long chain can't
  monopolize the worker) (P9.5)

Each job logs the sweep result counts. sidekiq.yml carries the cron
entries with the cadence rationale in the comment.
rett added a commit that referenced this pull request May 20, 2026
…cme DNS-resolver fix

Two related fixes for the ops single-node bootstrap path:

1) Rsync exclude additions (single-node-bootstrap.md):
   - config/extensions_state.json  — dev tree disables `trading` only;
     ops/prod must also disable `business` (gotcha #5 NameError on
     InstallWorkflow during eager_load). Overwriting from dev wipes the
     prod-side choice. Documented as gotcha #16.
   - frontend/.proxy-config-cache.json — host allowlists are per-env.

2) System submodule bumps to dc10401 — adds env-controlled DNS resolver
   overrides (POWERNODE_ACME_DNS_RESOLVERS, POWERNODE_ACME_DISABLE_PROPAGATION_CHECK)
   in powernode-acme so split-brain hosts (e.g. ops with opnsense
   internal + Cloudflare public for ipnode.net) can point lego at a
   public resolver for the propagation precheck without touching
   /etc/resolv.conf. Verified end-to-end against LE-staging on ops:
   cert issued in 15.9s with resolv.conf on the systemd stub and only
   the env var in place.
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