Skip to content

Commit 361778c

Browse files
fix(deps): update all dependencies
1 parent 08cff6c commit 361778c

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/build-push-chart.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name: Build/Push Image and Release Charts
1515
permissions: read-all
1616
jobs:
1717
setenv:
18-
uses: ortelius/workflow-toolkit/.github/workflows/env-config-workflow.yml@a111f8355abc11e12e9743ccb28dc29260fde8bb
18+
uses: ortelius/workflow-toolkit/.github/workflows/env-config-workflow.yml@1683ed4d5a04b6a14e91ed410ab283388bdcf010
1919
with:
2020
gh_head_ref: ${{ github.head_ref }}
2121
gh_ref_name: ${{ github.ref_name }}
@@ -27,7 +27,7 @@ jobs:
2727
permissions:
2828
id-token: write
2929
contents: write
30-
uses: ortelius/workflow-toolkit/.github/workflows/container-release-workflow.yml@a111f8355abc11e12e9743ccb28dc29260fde8bb
30+
uses: ortelius/workflow-toolkit/.github/workflows/container-release-workflow.yml@1683ed4d5a04b6a14e91ed410ab283388bdcf010
3131
needs: setenv
3232
with:
3333
gh_repository_owner: ${{ github.repository_owner }}
@@ -44,7 +44,7 @@ jobs:
4444
permissions:
4545
security-events: write
4646
statuses: write
47-
uses: ortelius/workflow-toolkit/.github/workflows/trivy-scan-workflow.yml@a111f8355abc11e12e9743ccb28dc29260fde8bb
47+
uses: ortelius/workflow-toolkit/.github/workflows/trivy-scan-workflow.yml@1683ed4d5a04b6a14e91ed410ab283388bdcf010
4848
needs:
4949
- setenv
5050
- release
@@ -56,7 +56,7 @@ jobs:
5656
helm:
5757
permissions:
5858
contents: write
59-
uses: ortelius/workflow-toolkit/.github/workflows/helm-release-workflow.yml@a111f8355abc11e12e9743ccb28dc29260fde8bb
59+
uses: ortelius/workflow-toolkit/.github/workflows/helm-release-workflow.yml@1683ed4d5a04b6a14e91ed410ab283388bdcf010
6060
needs:
6161
- setenv
6262
- release
@@ -76,7 +76,7 @@ jobs:
7676
GPG_KEY: ${{ secrets.GPG_KEY }}
7777
gh_token: ${{ secrets.HELM_INDEXER_TOKEN }}
7878
sbom:
79-
uses: ortelius/workflow-toolkit/.github/workflows/sbom-generation-workflow.yml@a111f8355abc11e12e9743ccb28dc29260fde8bb
79+
uses: ortelius/workflow-toolkit/.github/workflows/sbom-generation-workflow.yml@1683ed4d5a04b6a14e91ed410ab283388bdcf010
8080
needs:
8181
- setenv
8282
- release

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ jobs:
2121

2222
steps:
2323
- name: Harden Runner
24-
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
24+
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
2525
with:
2626
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2727

2828
- name: Checkout repository
29-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
32+
uses: github/codeql-action/init@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
3333
with:
3434
languages: "python"
3535

3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
37+
uses: github/codeql-action/analyze@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
3838
with:
3939
category: "/language:python"

.github/workflows/mega-linter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
steps:
2626
# Git Checkout
2727
- name: Harden Runner
28-
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
28+
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
2929
with:
3030
egress-policy: audit
3131

3232
- name: Checkout Code
33-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
33+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3434
with:
3535
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
3636
fetch-depth: 0 # If you use VALIDATE_ALL_CODEBASE = true, you can remove this line to improve performances
@@ -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@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
65+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
6666
with:
6767
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
6868
commit-message: "[MegaLinter] Apply linters automatic fixes"

.github/workflows/scorecard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626

2727
steps:
2828
- name: Harden Runner
29-
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
29+
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
3030
with:
3131
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3232

3333
- name: "Checkout code"
34-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
34+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3535
with:
3636
persist-credentials: false
3737

@@ -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@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
47+
uses: github/codeql-action/upload-sarif@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
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:2ea83e2dc2afc90e617925c7af227e88f52cd4b266aad1714c55091a21309da4 AS builder
1+
FROM cgr.dev/chainguard/python:latest-dev@sha256:ed5435d916ec864597676f91c663cb8d675d0073b65808b152df29692a85b8fd AS builder
22

33
COPY . /app
44

@@ -10,7 +10,7 @@ RUN wget -q -O - https://install.python-poetry.org | python -
1010
RUN poetry install --no-root;
1111

1212

13-
FROM cgr.dev/chainguard/python:latest@sha256:66a97fc45cfec264f1a42ec378af8f168667eb47e501dc2c2b5883f920a5827c
13+
FROM cgr.dev/chainguard/python:latest@sha256:049302d2fc1d2b24c054d812eadd8c3d6321352d0cbc0d2b96b68d809946ec5b
1414
USER nonroot
1515
ENV DB_HOST=localhost
1616
ENV DB_NAME=postgres

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ psycopg2-binary = "^2.9.11"
1515
pydantic = "^2.12.5"
1616
requests = "^2.32.5"
1717
sqlalchemy = "^2.0.45"
18-
starlette = "^0.50.0"
18+
starlette = "^0.52.0"
1919
uvicorn = "^0.40.0"
2020

2121

0 commit comments

Comments
 (0)