Skip to content

Commit 3b8289a

Browse files
Update all dependencies
1 parent 3c986eb commit 3b8289a

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.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:e7bd19ed041e872153b5c38bd6170d361b5788fab61fc91edd5ba8768c1a93d5 AS builder
22

33
COPY . /app
44

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

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

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ 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"
1717
pyyaml = "6.0.2"
18-
certifi = "2024.8.30"
18+
certifi = "2024.12.14"
1919
idna = "3.10"
20-
starlette = "0.41.3"
20+
starlette = "0.45.1"
2121

2222

2323
[build-system]

0 commit comments

Comments
 (0)