Skip to content

Commit be509ab

Browse files
authored
Merge branch 'main' into feat/deploy-yml
2 parents 69abf4d + 883a1c6 commit be509ab

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Handler entry tests: `cdk/test/handlers/orchestrate-task.test.ts`, `create-task.
4646
- **`mise run build`** runs **`//agent:quality`** before CDK — the deployed image bundles **`agent/`**; agent changes belong in that tree.
4747
- **`prek install`** fails if Git **`core.hooksPath`** is set — another hook manager owns hooks; see [CONTRIBUTING.md](./CONTRIBUTING.md).
4848
- **Editing on `main` directly** — ALWAYS create a worktree with a feature branch for changes, even trivial ones. Main should stay clean; all work flows through worktree → branch → PR → merge.
49-
- **Git worktrees**`node_modules/` and `agent/.venv/` are per-tree (not shared). Run **`mise run install`** in each new worktree before building. All CDK path references (`__dirname`-relative) and mise `config_roots` resolve correctly without extra setup.
49+
- **Git worktrees**Always **`git fetch origin main`** before creating a new worktree to ensure you branch from the latest remote state. `node_modules/` and `agent/.venv/` are per-tree (not shared). Run **`mise run install`** in each new worktree before building. All CDK path references (`__dirname`-relative) and mise `config_roots` resolve correctly without extra setup.
5050

5151
### Tech stack
5252

agent/.trivyignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
CVE-2026-33671

agent/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ RUN apt-get update && \
2626
build-essential \
2727
ca-certificates \
2828
gnupg && \
29+
# Upgrade base image's CVE-2026-27135 vulnerability
30+
apt-get upgrade -y --no-install-recommends libnghttp2-14 && \
2931
# Cleanup early to keep peak disk usage low during builds.
3032
apt-get clean && \
3133
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

0 commit comments

Comments
 (0)