Skip to content

Commit 15ba047

Browse files
committed
Merge branch 'ft/graphstyle' of https://github.com/openmcp-project/ui-frontend into ft/graphstyle
2 parents dc863bc + e69e7cd commit 15ba047

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2603
-805
lines changed

.env.template

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,7 @@ FEEDBACK_URL_LINK=
3232

3333
# frame-ancestors attribute of CSP. Separate multiple values with a space
3434
FRAME_ANCESTORS=
35+
36+
# Allowed CORS origins (comma-separated). Example: https://app.example.com,https://admin.example.com
37+
# Leave empty to use POST_LOGIN_REDIRECT as the default allowed origin
38+
ALLOWED_CORS_ORIGINS=

.github/renovate.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,14 @@
77
"group:allNonMajor",
88
"npm:unpublishSafe",
99
":disableDependencyDashboard"
10+
],
11+
"prCreation": "not-pending",
12+
"packageRules": [
13+
{
14+
"groupName": "@ui5/webcomponents packages",
15+
"matchPackageNames": [
16+
"@ui5/webcomponents{/,}**"
17+
]
18+
}
1019
]
11-
}
20+
}

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Docker meta
4040
id: meta
41-
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5
41+
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # v5
4242
with:
4343
images: ${{env.REGISTRY}}/${{env.IMAGE_NAME}}
4444
tags: |
@@ -53,7 +53,7 @@ jobs:
5353
password: ${{ secrets.GITHUB_TOKEN }}
5454

5555
- name: Set up QEMU
56-
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 #v3.6.0
56+
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
5757

5858
- name: Set up Docker Buildx
5959
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1

.github/workflows/on-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
password: ${{ secrets.GITHUB_TOKEN }}
5757

5858
- name: Set up QEMU
59-
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 #v3.6.0
59+
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
6060

6161
- name: Set up Docker Buildx
6262
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BUILD STAGE
2-
FROM node:24-slim@sha256:0f2d677a7152ee7ac390837bd4fc36aca12f595411df5d4209f972660e34a7b6 AS build-stage
2+
FROM node:24-slim@sha256:f752e4821362614eab35016f01dea3af61d2f59d0445381c25683e4331520a7b AS build-stage
33
WORKDIR /usr/src/app
44

55
# Copy package.json and package-lock.json

0 commit comments

Comments
 (0)