-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update versioning table. Update several dependencies.
- Loading branch information
Showing
20 changed files
with
45 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
node-version: [22.x] | ||
node-version: [22.x, 23.x] | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
if: env.SONAR_TOKEN != null | ||
uses: astral-sh/setup-uv@v5 | ||
with: | ||
version: "0.4.22" | ||
version: "0.5.29" | ||
- name: Set up Node | ||
if: env.SONAR_TOKEN != null | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM python:3.13.1-alpine3.20 AS compile-image | ||
FROM python:3.13.1-alpine3.21 AS compile-image | ||
|
||
WORKDIR /home/server | ||
|
||
RUN apk add --no-cache g++=13.2.1_git20240309-r0 gcc=13.2.1_git20240309-r0 libffi-dev=3.4.6-r0 make=4.4.1-r2 && \ | ||
RUN apk add --no-cache g++=14.2.0-r4 gcc=14.2.0-r4 libffi-dev=3.4.6-r0 make=4.4.1-r2 && \ | ||
python -m venv venv | ||
ENV PATH="/home/server/venv/bin:$PATH" | ||
COPY api_server/requirements/requirements.txt /requirements.txt | ||
|
@@ -11,7 +11,7 @@ COPY api_server/requirements/requirements-internal.txt /requirements-internal.tx | |
COPY shared_code /home/shared_code/ | ||
RUN pip install --no-cache-dir --use-pep517 -r /requirements-internal.txt | ||
|
||
FROM python:3.13.1-alpine3.20 | ||
FROM python:3.13.1-alpine3.21 | ||
|
||
LABEL maintainer="Quality-time team <[email protected]>" | ||
LABEL description="Quality-time API-server" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM python:3.13.1-alpine3.20 AS compile-image | ||
FROM python:3.13.1-alpine3.21 AS compile-image | ||
|
||
WORKDIR /home/collector | ||
|
||
RUN apk add --no-cache gcc=13.2.1_git20240309-r0 libffi-dev=3.4.6-r0 make=4.4.1-r2 && \ | ||
RUN apk add --no-cache gcc=14.2.0-r4 libffi-dev=3.4.6-r0 make=4.4.1-r2 && \ | ||
python -m venv venv | ||
ENV PATH="/home/collector/venv/bin:$PATH" | ||
COPY collector/requirements/requirements.txt /requirements.txt | ||
|
@@ -11,7 +11,7 @@ COPY shared_code /home/shared_code/ | |
COPY collector/requirements/requirements-internal.txt /requirements-internal.txt | ||
RUN pip install --no-cache-dir --use-pep517 -r /requirements-internal.txt | ||
|
||
FROM python:3.13.1-alpine3.20 | ||
FROM python:3.13.1-alpine3.21 | ||
|
||
LABEL maintainer="Quality-time team <[email protected]>" | ||
LABEL description="Quality-time collector" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:23.6.1-alpine3.20 AS compile-image | ||
FROM node:23.7.0-alpine3.21 AS compile-image | ||
|
||
WORKDIR /home/frontend | ||
COPY public /home/frontend/public | ||
|
@@ -10,7 +10,7 @@ COPY .env /home/frontend | |
RUN npm install --ignore-scripts && \ | ||
npm run --ignore-scripts build | ||
|
||
FROM node:23.6.1-alpine3.20 | ||
FROM node:23.7.0-alpine3.21 | ||
|
||
LABEL maintainer="Quality-time team <[email protected]>" | ||
LABEL description="Quality-time frontend" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM python:3.13.1-alpine3.20 AS compile-image | ||
FROM python:3.13.1-alpine3.21 AS compile-image | ||
|
||
WORKDIR /home/notifier | ||
|
||
RUN apk add --no-cache gcc=13.2.1_git20240309-r0 libffi-dev=3.4.6-r0 make=4.4.1-r2 && \ | ||
RUN apk add --no-cache gcc=14.2.0-r4 libffi-dev=3.4.6-r0 make=4.4.1-r2 && \ | ||
python -m venv venv | ||
ENV PATH="/home/notifier/venv/bin:$PATH" | ||
COPY notifier/requirements/requirements.txt /requirements.txt | ||
|
@@ -11,7 +11,7 @@ COPY shared_code /home/shared_code/ | |
COPY notifier/requirements/requirements-internal.txt /requirements-internal.txt | ||
RUN pip install --no-cache-dir --use-pep517 -r /requirements-internal.txt | ||
|
||
FROM python:3.13.1-alpine3.20 | ||
FROM python:3.13.1-alpine3.21 | ||
|
||
LABEL maintainer="Quality-time team <[email protected]>" | ||
LABEL description="Quality-time notifier" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
FROM node:23.6.1-alpine3.20 | ||
FROM node:23.7.0-alpine3.21 | ||
|
||
LABEL maintainer="Quality-time team <[email protected]>" | ||
LABEL description="Quality-time PDF render service" | ||
|
||
RUN apk add --no-cache \ | ||
msttcorefonts-installer=3.8.1-r1 \ | ||
fontconfig=2.15.0-r1 \ | ||
font-noto=23.7.1-r0 \ | ||
freetype=2.13.2-r0 \ | ||
font-droid=20200215-r3 \ | ||
font-noto=24.7.1-r0 \ | ||
freetype=2.13.3-r0 \ | ||
ttf-dejavu=2.37-r5 \ | ||
ttf-droid=20200215-r2 \ | ||
ttf-freefont=20120503-r4 \ | ||
ttf-liberation=2.1.5-r2 \ | ||
chromium=131.0.6778.108-r0 && \ | ||
chromium=132.0.6834.83-r0 && \ | ||
rm -rf /var/cache/apk/* /tmp/* && \ | ||
update-ms-fonts && \ | ||
fc-cache -f | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.13.1-alpine3.20 | ||
FROM python:3.13.1-alpine3.21 | ||
|
||
LABEL maintainer="Quality-time team <[email protected]>" | ||
LABEL description="Quality-time testdata" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters