Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Commit 0531937

Browse files
Update all dependencies
1 parent ae231b7 commit 0531937

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
32+
uses: github/codeql-action/init@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
3333
with:
3434
languages: "python"
3535

3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
37+
uses: github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
3838
with:
3939
category: "/language:python"

.github/workflows/mega-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
# Upload MegaLinter artifacts
5252
- name: Archive production artifacts
5353
if: ${{ success() || failure() }}
54-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
54+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
5555
with:
5656
name: MegaLinter reports
5757
path: |
@@ -62,7 +62,7 @@ jobs:
6262
- name: Create Pull Request with applied fixes
6363
id: cpr
6464
if: steps.ml.outputs.has_updated_sources == 1 && (env.APPLY_FIXES_EVENT == 'all' || env.APPLY_FIXES_EVENT == github.event_name) && env.APPLY_FIXES_MODE == 'pull_request' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) && !contains(github.event.head_commit.message, 'skip fix')
65-
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
65+
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7.0.6
6666
with:
6767
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
6868
commit-message: "[MegaLinter] Apply linters automatic fixes"

.github/workflows/scorecard.yml

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

4545
# Upload the results to GitHub's code scanning dashboard.
4646
- name: "Upload to code-scanning"
47-
uses: github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
47+
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
4848
with:
4949
sarif_file: results.sarif

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM cgr.dev/chainguard/python:latest-dev@sha256:912ce75048fac19785891f3ab53f4ccd3ac714d920aaf6e5f8919bb25e109126 AS builder
1+
FROM cgr.dev/chainguard/python:latest-dev@sha256:f4d352be4dbf850c0135a21b69bf9e334ca9c990fbdebb635c8ca4537ce43f92 AS builder
22

33
ENV PATH=$PATH:/home/nonroot/.local/bin
44

@@ -10,7 +10,7 @@ ENV PATH=/home/nonroot/.local/bin:$PATH
1010
RUN wget -q -O - https://install.python-poetry.org | python -
1111
RUN poetry install --no-root;
1212

13-
FROM cgr.dev/chainguard/python:latest@sha256:2d14d0505ffe2d03b1cef2675dec60b3d1da3576732a127249058655cecf64dc
13+
FROM cgr.dev/chainguard/python:latest@sha256:8485986f5483c93e0e154a6dd186695c0b218eab68ae6e72573df506b3cffdb2
1414
USER nonroot
1515
ENV DB_HOST localhost
1616
ENV DB_NAME postgres

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ readme = "README.md"
1010
python = "^3.12"
1111
fastapi = "0.115.6"
1212
psycopg2-binary = "2.9.10"
13-
pydantic = "2.10.3"
13+
pydantic = "2.10.4"
1414
sqlalchemy = "2.0.36"
15-
uvicorn = "0.32.1"
15+
uvicorn = "0.34.0"
1616
requests = "2.32.3"
17-
certifi = "2024.8.30"
17+
certifi = "2024.12.14"
1818
cvss = "3.3"
1919
defusedxml = "0.7.1"
2020
packageurl-python = "0.16.0"
2121
idna = "3.10"
22-
starlette = "0.41.3"
22+
starlette = "0.45.1"
2323

2424

2525
[build-system]

0 commit comments

Comments
 (0)