Skip to content

Commit 709a114

Browse files
chore(deps): update minor updates
1 parent f8fab22 commit 709a114

5 files changed

Lines changed: 102 additions & 68 deletions

File tree

.github/workflows/cd.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up QEMU
4646
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
4747
- name: Set up Docker Buildx
48-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
48+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
4949
- name: Login to Github Packages
5050
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
5151
with:
@@ -54,7 +54,7 @@ jobs:
5454
password: ${{ secrets.GITHUB_TOKEN }}
5555
- name: Build
5656
id: docker_build
57-
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6
57+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
5858
with:
5959
load: true
6060
- name: Smoke test
@@ -66,7 +66,7 @@ jobs:
6666
exit $(docker wait $container)
6767
- name: Extract metadata (tags, labels) for Docker
6868
id: meta
69-
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
69+
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5
7070
with:
7171
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
7272
flavor: |
@@ -79,7 +79,7 @@ jobs:
7979
- name: Build and push
8080
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
8181
id: docker_push
82-
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6
82+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
8383
with:
8484
push: true
8585
tags: ${{ steps.meta.outputs.tags }}

.github/workflows/pytest.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: packetcoders/action-setup-cache-python-poetry@0d0be5577b30d85f3fa2d93a4beeda149520f120 # v1.2.0
2929
with:
3030
# renovate: datasource=python-version depName=python versioning=python
31-
python-version: "3.13.3"
31+
python-version: "3.13.5"
3232
# renovate: datasource=pypi depName=poetry versioning=pep440
3333
poetry-version: "2.1.3"
3434
install-args: --all-extras
@@ -69,7 +69,7 @@ jobs:
6969
uses: jvansanten/action-setup-cache-python-poetry@working-directory
7070
with:
7171
# renovate: datasource=python-version depName=python versioning=python
72-
python-version: "3.13.3"
72+
python-version: "3.13.5"
7373
# renovate: datasource=pypi depName=poetry versioning=pep440
7474
poetry-version: "2.1.3"
7575
install-args: --all-extras

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# renovate: datasource=python-version depName=python versioning=python
3-
ARG PYTHON_VERSION=3.13.3
3+
ARG PYTHON_VERSION=3.13.5
44

55
FROM python:$PYTHON_VERSION-slim AS base
66

0 commit comments

Comments
 (0)