Skip to content

Commit c1d5340

Browse files
authored
Merge branch 'master' into fix-e2e-test-tip-2
2 parents 8bb4c11 + 00d3690 commit c1d5340

File tree

31 files changed

+93
-70
lines changed

31 files changed

+93
-70
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ updates:
1111
- sanderegg
1212
assignees:
1313
- pcrespov
14+
- sanderegg
15+
labels:
16+
- t:maintenance
1417
ignore:
1518
- dependency-name: docker-compose
1619
versions:
@@ -26,32 +29,10 @@ updates:
2629
- dependency-name: httpx
2730
versions:
2831
- 0.17.0
29-
- package-ecosystem: pip
30-
directory: "/packages/service-library"
31-
schedule:
32-
interval: weekly
33-
time: "04:00"
34-
open-pull-requests-limit: 10
35-
reviewers:
36-
- pcrespov
37-
- sanderegg
38-
assignees:
39-
- pcrespov
40-
ignore:
4132
- dependency-name: openapi-core
4233
versions:
4334
- "> 0.12.0, < 1"
44-
- package-ecosystem: pip
45-
directory: "/packages/postgres-database"
46-
schedule:
47-
interval: weekly
48-
time: "04:00"
49-
open-pull-requests-limit: 10
50-
reviewers:
51-
- pcrespov
52-
- sanderegg
53-
assignees:
54-
- pcrespov
35+
5536
- package-ecosystem: "github-actions"
5637
directory: "/"
5738
schedule:
@@ -62,3 +43,5 @@ updates:
6243
- pcrespov
6344
assignees:
6445
- sanderegg
46+
labels:
47+
- t:maintenance

.github/workflows/ci-testing-deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1730,15 +1730,13 @@ jobs:
17301730
matrix:
17311731
python: ["3.11"]
17321732
os: [ubuntu-22.04]
1733-
docker_buildx: [v0.10.4]
17341733
fail-fast: false
17351734
steps:
17361735
- uses: actions/checkout@v4
17371736
- name: setup docker buildx
17381737
id: buildx
17391738
uses: docker/setup-buildx-action@v3
17401739
with:
1741-
version: ${{ matrix.docker_buildx }}
17421740
driver: docker-container
17431741
- name: setup python environment
17441742
uses: actions/setup-python@v5

packages/postgres-database/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22
ARG PYTHON_VERSION="3.11.9"
3-
ARG UV_VERSION="0.4"
3+
ARG UV_VERSION="0.5"
44
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
55
# we docker image is built based on debian
66
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

packages/postgres-database/scripts/erd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

packages/service-integration/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Define arguments in the global scope
44
ARG PYTHON_VERSION="3.11.9"
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

requirements/tools/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
#
1111
ARG PYTHON_VERSION="3.11.9"
12-
ARG UV_VERSION="0.4"
12+
ARG UV_VERSION="0.5"
1313
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
1414
# we docker image is built based on debian
1515
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

scripts/erd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99

1010
ARG PYTHON_VERSION="3.11.9"
11-
ARG UV_VERSION="0.4"
11+
ARG UV_VERSION="0.5"
1212
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
1313
# we docker image is built based on debian
1414
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

scripts/maintenance/migrate_project/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
ARG UV_VERSION="0.4"
2+
ARG UV_VERSION="0.5"
33
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
44
# we docker image is built based on debian
55
FROM python:3.11.9-buster

scripts/openapi/oas_resolver/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Usage:
33
# docker build . -t oas_resolver
44
# docker run -v /path/to/api:/input -v /path/to/compiled/file:/output oas_resolver /input/path/to/openapi.yaml /output/output_file.yaml
5-
ARG UV_VERSION="0.4"
5+
ARG UV_VERSION="0.5"
66
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
77
# we docker image is built based on debian
88
FROM python:3.6-alpine

scripts/pydeps-docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
#
1111
ARG PYTHON_VERSION="3.11.9"
12-
ARG UV_VERSION="0.4"
12+
ARG UV_VERSION="0.5"
1313
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
1414
# we docker image is built based on debian
1515
FROM python:${PYTHON_VERSION}-slim-bookworm AS base

0 commit comments

Comments
 (0)