Skip to content

Commit 1162080

Browse files
Update all dependencies
1 parent 4c6277c commit 1162080

File tree

8 files changed

+31
-31
lines changed

8 files changed

+31
-31
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@b8742370cb1539c1edb9ad5b8f479f121980587f
18+
uses: ortelius/workflow-toolkit/.github/workflows/env-config-workflow.yml@f4838576b2f6cc71062002313e23e7be5c636158
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@b8742370cb1539c1edb9ad5b8f479f121980587f
30+
uses: ortelius/workflow-toolkit/.github/workflows/container-release-workflow.yml@f4838576b2f6cc71062002313e23e7be5c636158
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@b8742370cb1539c1edb9ad5b8f479f121980587f
47+
uses: ortelius/workflow-toolkit/.github/workflows/trivy-scan-workflow.yml@f4838576b2f6cc71062002313e23e7be5c636158
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@b8742370cb1539c1edb9ad5b8f479f121980587f
59+
uses: ortelius/workflow-toolkit/.github/workflows/helm-release-workflow.yml@f4838576b2f6cc71062002313e23e7be5c636158
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@b8742370cb1539c1edb9ad5b8f479f121980587f
79+
uses: ortelius/workflow-toolkit/.github/workflows/sbom-generation-workflow.yml@f4838576b2f6cc71062002313e23e7be5c636158
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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
24+
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
29+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8
32+
uses: github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
3333
with:
3434
languages: "python"
3535

3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8
37+
uses: github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
3838
with:
3939
category: "/language:python"

.github/workflows/mega-linter.yml

Lines changed: 6 additions & 6 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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
28+
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
2929
with:
3030
egress-policy: audit
3131

3232
- name: Checkout Code
33-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
33+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.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
@@ -40,7 +40,7 @@ jobs:
4040
id: ml
4141
# You can override MegaLinter flavor used to have faster performances
4242
# More info at https://megalinter.io/flavors/
43-
uses: oxsecurity/megalinter/flavors/python@c217fe8f7bc9207062a084e989bd97efd56e7b9a # v8.0.0
43+
uses: oxsecurity/megalinter/flavors/python@1fc052d03c7a43c78fe0fee19c9d648b749e0c01 # v8.3.0
4444
env:
4545
# All available variables are described in documentation
4646
# https://megalinter.io/configuration/
@@ -51,7 +51,7 @@ jobs:
5151
# Upload MegaLinter artifacts
5252
- name: Archive production artifacts
5353
if: ${{ success() || failure() }}
54-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
54+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.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"
@@ -80,7 +80,7 @@ jobs:
8080
run: sudo chown -Rc $UID .git/
8181
- name: Commit and push applied linter fixes
8282
if: steps.ml.outputs.has_updated_sources == 1 && (env.APPLY_FIXES_EVENT == 'all' || env.APPLY_FIXES_EVENT == github.event_name) && env.APPLY_FIXES_MODE == 'commit' && github.ref != 'refs/heads/main' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) && !contains(github.event.head_commit.message, 'skip fix')
83-
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5.0.1
83+
uses: stefanzweifel/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # v5.1.0
8484
with:
8585
branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
8686
commit_message: "[MegaLinter] Apply linters 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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
29+
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
34+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.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@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8
47+
uses: github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
4848
with:
4949
sarif_file: results.sarif

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
# hadolint global ignore=DL3041,DL3013,DL4006
15-
FROM public.ecr.aws/amazonlinux/amazonlinux:2023.5.20240916.0@sha256:feeb91e31912e7b3739d9cee4bc2181262f54688bc4fbd21069f3cedce03fa4f
15+
FROM public.ecr.aws/amazonlinux/amazonlinux:2023.6.20250115.0@sha256:7f371357694782356b65c7fd60dd1ca124c47bd5ed1b1ffe7c0e17f562898367
1616

1717
COPY . /app
1818
WORKDIR /app

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ readme = "README.md"
88

99
[tool.poetry.dependencies]
1010
python = "^3.11"
11-
fastapi = "0.115.0"
12-
numpy = "2.1.1"
11+
fastapi = "0.115.6"
12+
numpy = "2.2.1"
1313
pandas = "2.2.3"
14-
psycopg2-binary = "2.9.9"
15-
pydantic = "2.9.2"
16-
sqlalchemy = "2.0.35"
17-
uvicorn = "0.30.6"
18-
certifi = "2024.8.30"
19-
starlette = "0.38.6"
14+
psycopg2-binary = "2.9.10"
15+
pydantic = "2.10.5"
16+
sqlalchemy = "2.0.37"
17+
uvicorn = "0.34.0"
18+
certifi = "2024.12.14"
19+
starlette = "0.45.2"
2020

2121

2222
[build-system]

reports/frequency.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
<meta name="description" content="Compliance Scorecard" />
2121
<meta name="keywords" content="sbom, dora metrics" />
2222
<meta name="google" content="notranslate" />
23-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/billboard.js/3.13.0/billboard.min.css" integrity="sha512-jUcOYfzjBCnFX4+461Pxh+ey+fRnwCjktnZPLVjuXZkO4ab3WN8mZ/SZ6zrREKFLN4OTTm78G3+l/78KnS1lwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
23+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/billboard.js/3.14.3/billboard.min.css" integrity="sha512-+iioEOUqup3ddDw5CE3m87DWYtXSJrYphQzP5sYHdJCcvMULwEelaPgWBV4TFu+XQmL9ZEhfPUvgFWgbQ0hocQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
2424
<link rel="stylesheet" type="text/css" href="https://console.deployhub.com/dmadminweb/css/devops_frydesign.css" />
2525
</head>
2626
<body>
2727
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
2828
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js" integrity="sha256-lSjKY0/srUM9BE3dPm+c4fBo1dky2v27Gdjm2uoZaL0=" crossorigin="anonymous"></script>
2929
<script src="https://d3js.org/d3.v6.min.js"></script>
30-
<script src="https://cdnjs.cloudflare.com/ajax/libs/billboard.js/3.13.0/billboard.min.js" integrity="sha512-4dVqqVsMH181fVlqO8TQZRY02Bw0Nmq1/TDsUXjrAE5Mj7ZeRCL2mE0CEGHokJ76PdgWbm40KJvXDiSqluHUdw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
30+
<script src="https://cdnjs.cloudflare.com/ajax/libs/billboard.js/3.14.3/billboard.min.js" integrity="sha512-xM26fmR2IozMkGheDIWdWNI+JcLmTrs+tmHBAD6tbbV3nODZumfpxLis5Jpe8xzLcRmlGQeI/Lj2NmIwx5yl+Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
3131

3232
<script type="text/javascript">
3333

reports/lag.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
<meta name="description" content="Compliance Scorecard" />
2121
<meta name="keywords" content="sbom, dora metrics" />
2222
<meta name="google" content="notranslate" />
23-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/billboard.js/3.13.0/billboard.min.css" integrity="sha512-jUcOYfzjBCnFX4+461Pxh+ey+fRnwCjktnZPLVjuXZkO4ab3WN8mZ/SZ6zrREKFLN4OTTm78G3+l/78KnS1lwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
23+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/billboard.js/3.14.3/billboard.min.css" integrity="sha512-+iioEOUqup3ddDw5CE3m87DWYtXSJrYphQzP5sYHdJCcvMULwEelaPgWBV4TFu+XQmL9ZEhfPUvgFWgbQ0hocQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
2424
<link rel="stylesheet" type="text/css" href="https://console.deployhub.com/dmadminweb/css/devops_frydesign.css" />
2525
</head>
2626
<body>
2727
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
2828
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js" integrity="sha256-lSjKY0/srUM9BE3dPm+c4fBo1dky2v27Gdjm2uoZaL0=" crossorigin="anonymous"></script>
2929
<script src="https://d3js.org/d3.v6.min.js"></script>
30-
<script src="https://cdnjs.cloudflare.com/ajax/libs/billboard.js/3.13.0/billboard.min.js" integrity="sha512-4dVqqVsMH181fVlqO8TQZRY02Bw0Nmq1/TDsUXjrAE5Mj7ZeRCL2mE0CEGHokJ76PdgWbm40KJvXDiSqluHUdw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
30+
<script src="https://cdnjs.cloudflare.com/ajax/libs/billboard.js/3.14.3/billboard.min.js" integrity="sha512-xM26fmR2IozMkGheDIWdWNI+JcLmTrs+tmHBAD6tbbV3nODZumfpxLis5Jpe8xzLcRmlGQeI/Lj2NmIwx5yl+Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
3131

3232
<script type="text/javascript">
3333

0 commit comments

Comments
 (0)