Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM mcr.microsoft.com/devcontainers/base:1-ubuntu-24.04

# Build arguments
ARG CLAUDE_CODE_OAUTH_TOKEN

Check warning on line 4 in .devcontainer/Dockerfile

View workflow job for this annotation

GitHub Actions / Trivy Container Scan

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "CLAUDE_CODE_OAUTH_TOKEN") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 4 in .devcontainer/Dockerfile

View workflow job for this annotation

GitHub Actions / Generate SBOM

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "CLAUDE_CODE_OAUTH_TOKEN") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ARG ANTHROPIC_API_KEY

Check warning on line 5 in .devcontainer/Dockerfile

View workflow job for this annotation

GitHub Actions / Trivy Container Scan

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "ANTHROPIC_API_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 5 in .devcontainer/Dockerfile

View workflow job for this annotation

GitHub Actions / Generate SBOM

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "ANTHROPIC_API_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ARG IMAGE_VERSION="dev"

# OCI Image Labels for version tracking
Expand Down Expand Up @@ -91,7 +91,7 @@
# Install Claude Code using native installer (npm installation deprecated)
# Must run as vscode user so claude installs to /home/vscode/.claude/local/bin
USER vscode
RUN curl -fsSL https://claude.ai/install.sh | bash -s 2.1.42 \
RUN curl -fsSL https://claude.ai/install.sh | bash -s 2.1.63 \
&& echo 'export PATH="$HOME/.claude/local/bin:$PATH"' >> /home/vscode/.bashrc
ENV PATH="/home/vscode/.claude/local/bin:${PATH}"
USER root
Expand Down
12 changes: 6 additions & 6 deletions npm/global.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"overridden": false
},
"@openai/codex": {
"version": "0.104.0",
"version": "0.106.0",
"overridden": false
},
"@google/gemini-cli": {
"version": "0.29.5",
"version": "0.31.0",
"overridden": false
},
"happy-coder": {
Expand Down Expand Up @@ -46,7 +46,7 @@
"overridden": false
},
"yaml-language-server": {
"version": "1.20.0",
"version": "1.21.0",
"overridden": false
},
"corepack": {
Expand All @@ -58,19 +58,19 @@
"overridden": false
},
"n8n": {
"version": "2.8.3",
"version": "2.9.4",
"overridden": false
},
"npm": {
"version": "11.10.1",
"version": "11.11.0",
"overridden": false
},
"pm2": {
"version": "6.0.14",
"overridden": false
},
"vercel": {
"version": "50.22.1",
"version": "50.25.4",
"overridden": false
}
}
Expand Down
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
"@semantic-release/release-notes-generator": "14.1.0",
"bats": "^1.13.0",
"conventional-changelog-conventionalcommits": "9.1.0",
"eslint": "10.0.1",
"eslint": "10.0.2",
"eslint-config-prettier": "10.1.8",
"globals": "17.3.0",
"globals": "17.4.0",
"husky": "9.1.7",
"jest": "30.2.0",
"jest-junit": "^16.0.0",
Expand Down
Loading