Skip to content

Commit 8e89c5f

Browse files
Pin dependencies
1 parent 970bcff commit 8e89c5f

11 files changed

Lines changed: 49 additions & 217 deletions

File tree

.github/workflows/deploy-github-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
full_tag: ${{ steps.vars.outputs.full_tag }}
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
3232
with:
3333
ref: ${{ github.ref }}
3434

@@ -62,7 +62,7 @@ jobs:
6262
- name: Setup Node.js
6363
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
6464
with:
65-
node-version: '20'
65+
node-version: '20.19.5'
6666
cache: 'npm'
6767
cache-dependency-path: mucgpt-frontend/package-lock.json
6868

@@ -77,7 +77,7 @@ jobs:
7777
npm run build:ghpages
7878
7979
- name: Setup Pages
80-
uses: actions/configure-pages@v4
80+
uses: actions/configure-pages@1f0c5cde4bc74cd7e1254d0cb4de8d49e9068c7d # v4
8181

8282
- name: Upload artifact
8383
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1

mucgpt-assistant-service-migrations/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# small ubi10 image
2-
FROM registry.access.redhat.com/ubi10/ubi-minimal:latest
2+
FROM registry.access.redhat.com/ubi10/ubi-minimal:latest@sha256:649f7ce8082531148ac5e45b61612046a21e36648ab096a77e6ba0c94428cf60
33

4-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
4+
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:9874eb7afe5ca16c363fe80b294fe700e460df29a55532bbfea234a0f12eddb1 /uv /uvx /bin/
55

66
# Enable bytecode compilation
77
ENV UV_COMPILE_BYTECODE=1

mucgpt-assistant-service-migrations/pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ maintainers = [
1111
{ name = "Michael Jaumann", email = "michael.jaumann@muenchen.de" },
1212
{ name = "Paul Ilitz", email = "paul.ilitz@muenchen.de" },
1313
]
14-
requires-python = ">=3.10"
14+
requires-python = "==3.13.7"
1515
dependencies = [
16-
"alembic>=1.14.0",
17-
"asyncpg>=0.30.0",
18-
"psycopg2-binary>=2.9.10",
19-
"pydantic-settings>=2.10.1",
20-
"sqlalchemy>=2.0.41",
16+
"alembic==1.16.2",
17+
"asyncpg==0.30.0",
18+
"psycopg2-binary==2.9.10",
19+
"pydantic-settings==2.10.1",
20+
"sqlalchemy==2.0.41",
2121
]
2222

2323
[tool.uv]

mucgpt-assistant-service/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Small ubi10 image
2-
FROM registry.access.redhat.com/ubi10/ubi-minimal:latest
2+
FROM registry.access.redhat.com/ubi10/ubi-minimal:latest@sha256:649f7ce8082531148ac5e45b61612046a21e36648ab096a77e6ba0c94428cf60
33

4-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
4+
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:9874eb7afe5ca16c363fe80b294fe700e460df29a55532bbfea234a0f12eddb1 /uv /uvx /bin/
55

66
WORKDIR /app
77

mucgpt-assistant-service/pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ maintainers = [
1111
{ name = "Michael Jaumann", email = "michael.jaumann@muenchen.de" },
1212
{ name = "Paul Ilitz", email = "paul.ilitz@muenchen.de" },
1313
]
14-
requires-python = ">=3.10"
14+
requires-python = "==3.13.7"
1515
dependencies = [
1616
"asgi-correlation-id==4.3.4",
17-
"asyncpg>=0.30.0",
17+
"asyncpg==0.30.0",
1818
"fastapi[standard]==0.116.1",
1919
"gitpython==3.1.45",
2020
"joserfc==1.3.3",
21-
"psycopg2-binary>=2.9.10",
22-
"pydantic-settings>=2.10.1",
23-
"requests>=2.32.5",
24-
"sqlalchemy>=2.0.43",
25-
"uvicorn>=0.35.0",
21+
"psycopg2-binary==2.9.10",
22+
"pydantic-settings==2.10.1",
23+
"requests==2.32.5",
24+
"sqlalchemy==2.0.43",
25+
"uvicorn==0.35.0",
2626
]
2727

2828
[tool.uv]

mucgpt-core-service/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# small ubi10 image
2-
FROM registry.access.redhat.com/ubi10/ubi-minimal:latest
2+
FROM registry.access.redhat.com/ubi10/ubi-minimal:latest@sha256:649f7ce8082531148ac5e45b61612046a21e36648ab096a77e6ba0c94428cf60
33

44

5-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
5+
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:9874eb7afe5ca16c363fe80b294fe700e460df29a55532bbfea234a0f12eddb1 /uv /uvx /bin/
66

77
# Enable bytecode compilation
88
ENV UV_COMPILE_BYTECODE=1

mucgpt-core-service/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "mucgpt-core-service"
33
version = "1.2.5"
44
description = "a web interface for large language models for the public administration"
55
readme = "README.md"
6-
requires-python= ">=3.10"
6+
requires-python= "==3.13.7"
77
authors = [
88
{ name = "Michael Jaumann", email = "michael.jaumann@muenchen.de" },
99
{ name = "Paul Ilitz", email = "paul.ilitz@muenchen.de" },
@@ -27,10 +27,10 @@ dependencies = [
2727
"uvicorn==0.35.0",
2828
"asgi-correlation-id==4.3.4",
2929
"gitpython==3.1.45",
30-
"pydantic-settings>=2.8.1",
31-
"langgraph>=0.6.0",
32-
"truststore>=0.10.4",
33-
"langfuse>=3.3.4",
30+
"pydantic-settings==2.10.1",
31+
"langgraph==0.6.7",
32+
"truststore==0.10.4",
33+
"langfuse==3.3.4",
3434
]
3535

3636
[tool.uv]

mucgpt-frontend/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mucgpt-frontend/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
"remark": "15.0.1",
2525
"remark-gfm": "4.0.1",
2626
"remark-math": "6.0.0",
27-
"prismjs": ">=1.30.0",
27+
"prismjs": "1.30.0",
2828
"typescript-eslint": "8.42.0",
2929
"uuid": "13.0.0"
3030
},
3131
"devDependencies": {
32-
"brace-expansion": ">=1.1.12",
33-
"esbuild": ">=0.25.0",
32+
"brace-expansion": "1.1.12",
33+
"esbuild": "0.25.9",
3434
"@types/dompurify": "3.2.0",
3535
"@types/node": "22.14.0",
3636
"@types/react": "18.3.12",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "MUCGPT"
33
version = "1.2.5"
44
description = "a web interface for large language models for the public administration"
55
readme = "README.md"
6-
requires-python= ">=3.10"
6+
requires-python= "==3.13.7"
77
authors = [
88
{ name = "Michael Jaumann", email = "michael.jaumann@muenchen.de" },
99
{ name = "Paul Ilitz", email = "paul.ilitz@muenchen.de" },

0 commit comments

Comments
 (0)