Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 56f82b1

Browse files
authored
Merge branch 'main' into issue-929
2 parents 6a87e94 + 582ac79 commit 56f82b1

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/image-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
- name: Set up QEMU for cross-platform builds
3030
# Only set up QEMU if the platform is not linux/amd64
3131
if: ${{ inputs.platform != 'linux/amd64' }}
32-
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3
32+
uses: docker/setup-qemu-action@5964de0df58d5ad28b04d8fe2e6b80ad47105b91 # v3
3333
- name: Set up Docker Buildx
34-
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
34+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
3535
- name: Download artifact
3636
id: download-artifact
3737
uses: dawidd6/action-download-artifact@20319c5641d495c8a52e688b7dc5fada6c3a9fbc # v8
@@ -53,7 +53,7 @@ jobs:
5353
git lfs pull
5454
- name: Test build - ${{ inputs.platform }}
5555
id: docker_build
56-
uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v5
56+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v5
5757
with:
5858
context: .
5959
file: ./Dockerfile

.github/workflows/image-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
- name: Checkout
2323
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2424
- name: Set up QEMU for cross-platform builds
25-
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3
25+
uses: docker/setup-qemu-action@5964de0df58d5ad28b04d8fe2e6b80ad47105b91 # v3
2626
- name: Set up Docker Buildx
27-
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
27+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
2828
- name: Compute version number
2929
id: version-string
3030
run: |
@@ -38,7 +38,7 @@ jobs:
3838
username: ${{ github.actor }}
3939
password: ${{ secrets.GITHUB_TOKEN }}
4040
- name: Set container metadata
41-
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5
41+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
4242
id: docker-metadata
4343
with:
4444
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
@@ -76,7 +76,7 @@ jobs:
7676
git lfs pull
7777
- name: Build and Push Image
7878
id: image-build
79-
uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6
79+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
8080
with:
8181
context: .
8282
platforms: linux/amd64,linux/arm64

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ COPY . /app
2727
RUN sed -i "s/_VERSION =.*/_VERSION = \"${CODEGATE_VERSION}\"/g" /app/src/codegate/__init__.py
2828

2929
# Build the webapp
30-
FROM docker.io/library/node:23-slim@sha256:054f13a53d12afb8ba84a6e8fdcdf54e1a99a93250426c83fd5e3d38343577c2 AS webbuilder
30+
FROM docker.io/library/node:23-slim@sha256:59de3d6646e7b8d02637499e4f38b9f9c5fef6bef4965dbe95e37b640160900b AS webbuilder
3131

3232

3333

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PyYAML = "==6.0.2"
1414
fastapi = "==0.115.8"
1515
uvicorn = "==0.34.0"
1616
structlog = "==25.1.0"
17-
litellm = "==1.61.16"
17+
litellm = "==1.61.17"
1818
llama_cpp_python = "==0.3.5"
1919
cryptography = "==44.0.1"
2020
sqlalchemy = "==2.0.38"
@@ -50,7 +50,7 @@ ruff = "==0.9.7"
5050
bandit = "==1.8.3"
5151
build = "==1.2.2.post1"
5252
wheel = "==0.45.1"
53-
litellm = "==1.61.16"
53+
litellm = "==1.61.17"
5454
pytest-asyncio = "==0.25.3"
5555
llama_cpp_python = "==0.3.5"
5656
scikit-learn = "==1.6.1"

0 commit comments

Comments
 (0)