Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Pin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 19, 2024
1 parent 6db1eb7 commit 5cf7d88
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 41 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -53,7 +53,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -67,4 +67,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3
6 changes: 3 additions & 3 deletions .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
DATABASE_URL : "docs"
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up python 🐍
uses: actions/setup-python@v5
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: '3.x'
- name: Install reqs 📦
Expand All @@ -31,7 +31,7 @@ jobs:
- name: pdoc build 🏗️
run: pdoc api db tests -t docs/ -o docs/dist/
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/dist/
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM python:3.10-bullseye
FROM python:3.10-bullseye@sha256:5c6f3a5a8ab7f559a2d5adb543030c0306e5656a049be19fe51b1677ca8d04d7

WORKDIR /app

COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:ab5cd8c7946ae6a359a9aea9073b5effd311d40a65310380caae938a1abf55da /uv /uvx /bin/

# Install the project's dependencies using the lockfile and settings
RUN --mount=type=cache,target=/root/.cache/uv \
Expand Down
30 changes: 15 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ license = "MIT License"
requires-python = ">=3.10, <3.11"
dependencies = [
"alembic-utils==0.8.3",
"connexion[flask,swagger-ui,uvicorn]>=3.1.0",
"connexion[flask,swagger-ui,uvicorn]==3.1.0",
"dataclass-dict-convert==1.7.3",
"flask-apscheduler==1.13.1",
"flask-migrate==4.0.7",
"flask-sqlalchemy==3.1.1",
"flask==3.0.3",
"funding-service-design-utils>=5.0.8,<6.0.0",
"funding-service-design-utils==5.0.8",
"jsonpath-rw-ext==1.2.2",
"marshmallow-sqlalchemy==1.0.0",
"openapi-spec-validator>=0.7.1",
"openapi-spec-validator==0.7.1",
"prance==23.6.21.0",
"psycopg2-binary==2.9.9",
"requests==2.32.3",
"sqlalchemy-utils>=0.41.2",
"sqlalchemy>=2.0.30",
"sqlalchemy-utils==0.41.2",
"sqlalchemy==2.0.31",
"swagger-ui-bundle==1.1.0",
"uvicorn==0.30.1",
]
Expand All @@ -43,17 +43,17 @@ count = true

[dependency-groups]
dev = [
"black>=24.4.2",
"colored>=2.2.4",
"debugpy>=1.8.2",
"deepdiff>=7.0.1",
"flake8-pyproject>=1.2.3",
"invoke>=2.2.0",
"black==24.4.2",
"colored==2.2.4",
"debugpy==1.8.2",
"deepdiff==7.0.1",
"flake8-pyproject==1.2.3",
"invoke==2.2.0",
"json2html==1.3.0",
"moto[s3,sqs]==5.0.10",
"pre-commit~=4.0.0",
"pytest>=8.2.2",
"pytest-env>=1.1.3",
"pytest-flask>=1.3.0",
"pre-commit==4.0.1",
"pytest==8.2.2",
"pytest-env==1.1.3",
"pytest-flask==1.3.0",
"pytest-mock==3.14.0",
]
34 changes: 17 additions & 17 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5cf7d88

Please sign in to comment.