fix:Update Build env dependencys (#1646)

Integrated into release/v3.7.1 — CI dependency updates and Node 24.15.0 bump
This commit is contained in:
backryun
2026-04-27 13:08:49 +09:00
committed by GitHub
parent c26c3a46a9
commit 725ec7f2a9
3 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: fix/claude-thinking-mapping
@@ -28,7 +28,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
target: runner-base

View File

@@ -63,7 +63,7 @@ jobs:
needs: i18n-matrix
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6.2.0
- uses: actions/setup-python@v6
with:
python-version: "3.12"

View File

@@ -1,4 +1,4 @@
FROM node:24.14.1-trixie-slim AS builder
FROM node:24.15.0-trixie-slim AS builder
WORKDIR /app
RUN apt-get update \
@@ -15,7 +15,7 @@ RUN if [ -f package-lock.json ]; then npm ci --no-audit --no-fund; else npm inst
COPY . ./
RUN mkdir -p /app/data && npm run build -- --webpack
FROM node:24.14.1-trixie-slim AS runner-base
FROM node:24.15.0-trixie-slim AS runner-base
WORKDIR /app
LABEL org.opencontainers.image.title="omniroute" \