Skip to content

Commit 8b195da

Browse files
chore(deps): update minor updates
1 parent 9496697 commit 8b195da

5 files changed

Lines changed: 43 additions & 30 deletions

File tree

.github/workflows/cd.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@ jobs:
4141
id-token: write
4242

4343
steps:
44-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
44+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
4545
- name: Set up QEMU
46-
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
46+
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # 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
50-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
50+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
5151
with:
5252
registry: ghcr.io
5353
username: ${{ github.actor }}
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@c299e40c65443455700f0fdfc63efafe5b349051 # 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
@@ -23,7 +23,7 @@ jobs:
2323
mypy:
2424
runs-on: ubuntu-24.04
2525
steps:
26-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
26+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2727
- name: "Set up environment"
2828
uses: packetcoders/action-setup-cache-python-poetry@0d0be5577b30d85f3fa2d93a4beeda149520f120 # v1.2.0
2929
with:
@@ -62,7 +62,7 @@ jobs:
6262
working-directory: "src"
6363

6464
steps:
65-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
65+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
6666
with:
6767
path: src
6868
- name: "Set up environment"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WORKDIR /app
99
FROM base AS builder
1010

1111
# renovate: datasource=pypi depName=poetry versioning=pep440
12-
ARG POETRY_VERSION=2.1.3
12+
ARG POETRY_VERSION=2.2.1
1313

1414
ENV PIP_DEFAULT_TIMEOUT=100 \
1515
PIP_DISABLE_PIP_VERSION_CHECK=1 \

poetry.lock

Lines changed: 31 additions & 18 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
@@ -8,12 +8,12 @@ readme = "README.md"
88

99
[tool.poetry.dependencies]
1010
python = ">=3.10,<4"
11-
fastapi = "^0.115.0"
11+
fastapi = "^0.123.0"
1212
catsHTM = {path = "vendor/github.com/AmpelAstro/catsHTM"}
1313
# catsHTM secretly depends on pkg_resources via hdf5storage
1414
setuptools = {version = "*", python = ">=3.12"}
1515
extcats = "^2.5.0"
16-
uvicorn = {version="^0.34.0", optional=true}
16+
uvicorn = {version="^0.38.0", optional=true}
1717
gunicorn = {version="^23.0.0", optional=true}
1818
pydantic-settings = "^2.5.2"
1919

0 commit comments

Comments
 (0)