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 .github/workflows/npm-audit-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
type: string
node_version:
description: "Node.js version to use"
default: "24.15.0"
default: "24.16.0"
required: false
type: string
omit_dev:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-npm-libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- uses: actions/setup-node@v6
if: ${{ inputs.tool == 'npm' || inputs.tool == 'yarn' }}
with:
node-version: "24.15.0"
node-version: "24.16.0"
registry-url: "https://registry.npmjs.org"
cache: "${{ inputs.tool }}"
cache-dependency-path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-android-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- uses: actions/setup-node@v6
if: ${{ (inputs.tool == 'npm' || inputs.tool == 'yarn') && steps.check_build_artifact_exists.outputs.exists == 'true' && steps.check_app_artifact_exists.outputs.exists == 'true' }}
with:
node-version: "24.15.0"
node-version: "24.16.0"
cache: "${{ inputs.tool }}"

- name: install with npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-scan-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
if: ${{ inputs.tool == 'npm' || inputs.tool == 'yarn' }}
uses: actions/setup-node@v6
with:
node-version: "24.15.0"
node-version: "24.16.0"
cache: "${{ inputs.tool }}"
cache-dependency-path: |
${{ inputs.root_dir }}/package-lock.json
Expand Down Expand Up @@ -196,6 +196,6 @@ jobs:
uses: ./.github/workflows/npm-audit-autofix.yml
with:
root_dir: ${{ inputs.root_dir }}
node_version: "24.15.0"
node_version: "24.16.0"
omit_dev: ${{ inputs.npm_audit_omit_dev }}
severity_threshold: ${{ inputs.npm_audit_severity_threshold }}
2 changes: 1 addition & 1 deletion .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
- uses: actions/setup-node@v6
if: ${{ inputs.tool == 'npm' || inputs.tool == 'yarn' }}
with:
node-version: "24.15.0"
node-version: "24.16.0"
cache: "${{ inputs.tool }}"
cache-dependency-path: |
${{ inputs.root_dir }}/package-lock.json
Expand Down
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ The main orchestrator that:

### Test and Build (`test-and-build.yml`)
Core workflow that:
- Sets up language-specific environments (Node.js v24.15.0, Python via pyproject.toml, Java 21)
- Sets up language-specific environments (Node.js v24.16.0, Python via pyproject.toml, Java 21)
- Implements comprehensive caching for dependencies across all tools (tool-specific cache keys)
- Supports Nx monorepos with SHA optimization
- Handles Playwright E2E testing automatically (supports .ts, .js, and .mjs config variants)
Expand Down Expand Up @@ -295,7 +295,7 @@ Publishing only occurs on:

### Multi-language Support
The workflows dynamically adapt based on `tool` parameter:
- **npm/yarn**: Node.js v24.15.0, package-lock.json/yarn.lock caching
- **npm/yarn**: Node.js v24.16.0, package-lock.json/yarn.lock caching
- **uv**: Python setup from pyproject.toml, uv.lock caching
- **./gradlew**: JDK 21 Temurin, Gradle caching
- **mvn**: JDK 21 Temurin, Maven repository caching
Expand Down
Loading