Skip to content

Commit 0500962

Browse files
Merge branch 'main' into feat/adding-graphs-to-mcp
2 parents 3c6d6e3 + 88dafad commit 0500962

File tree

15 files changed

+1017
-383
lines changed

15 files changed

+1017
-383
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Node.js
1616
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
1717
with:
18-
node-version: 22
18+
node-version: 24
1919
cache: 'npm' # Added caching for faster installs
2020

2121
- name: Install dependencies

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Docker meta
3434
id: meta
35-
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
35+
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5
3636
with:
3737
images: ${{env.REGISTRY}}/${{env.IMAGE_NAME}}
3838
tags: |

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BUILD STAGE
2-
FROM node:24-slim@sha256:36ae19f59c91f3303c7a648f07493fe14c4bd91320ac8d898416327bacf1bbfa AS build-stage
2+
FROM node:24-slim@sha256:3e94dd65fe94945f1777bcab2a2c6f23998590440369cd345af48a44fb381691 AS build-stage
33
WORKDIR /usr/src/app
44

55
# Copy package.json and package-lock.json
@@ -18,7 +18,7 @@ RUN npm prune --omit=dev
1818

1919

2020
# PRODUCTION STAGE
21-
FROM gcr.io/distroless/nodejs24-debian12@sha256:20a51c926c0bb68a9b1f7059c81516da002655f8a896a2cb7bc56b56974782b3 AS production
21+
FROM gcr.io/distroless/nodejs24-debian12@sha256:ca801d691284502b3b433d9fbd13f85b5c222f62b3716e2fa8838f72a8f5c17c AS production
2222
WORKDIR /usr/src/app
2323

2424
# Copy built files

cypress/support/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
import '@ui5/webcomponents-cypress-commands';
2-
import "../../i18n";
2+
import "../../src/utils/i18n/i18n";

i18n.ts

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)