File tree Expand file tree Collapse file tree 7 files changed +176
-148
lines changed
Expand file tree Collapse file tree 7 files changed +176
-148
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ name: Build/Push Image and Release Charts
1515permissions : read-all
1616jobs :
1717 setenv :
18- uses : ortelius/workflow-toolkit/.github/workflows/env-config-workflow.yml@d1fc2a29a5096fbaeb1d418dea126942bad91f52
18+ uses : ortelius/workflow-toolkit/.github/workflows/env-config-workflow.yml@e9eeb0b981f6e48b26f16ff977bcae62ac3afb26
1919 with :
2020 gh_head_ref : ${{ github.head_ref }}
2121 gh_ref_name : ${{ github.ref_name }}
2727 permissions :
2828 id-token : write
2929 contents : write
30- uses : ortelius/workflow-toolkit/.github/workflows/container-release-workflow.yml@d1fc2a29a5096fbaeb1d418dea126942bad91f52
30+ uses : ortelius/workflow-toolkit/.github/workflows/container-release-workflow.yml@e9eeb0b981f6e48b26f16ff977bcae62ac3afb26
3131 needs : setenv
3232 with :
3333 gh_repository_owner : ${{ github.repository_owner }}
4444 permissions :
4545 security-events : write
4646 statuses : write
47- uses : ortelius/workflow-toolkit/.github/workflows/trivy-scan-workflow.yml@d1fc2a29a5096fbaeb1d418dea126942bad91f52
47+ uses : ortelius/workflow-toolkit/.github/workflows/trivy-scan-workflow.yml@e9eeb0b981f6e48b26f16ff977bcae62ac3afb26
4848 needs :
4949 - setenv
5050 - release
5656 helm :
5757 permissions :
5858 contents : write
59- uses : ortelius/workflow-toolkit/.github/workflows/helm-release-workflow.yml@d1fc2a29a5096fbaeb1d418dea126942bad91f52
59+ uses : ortelius/workflow-toolkit/.github/workflows/helm-release-workflow.yml@e9eeb0b981f6e48b26f16ff977bcae62ac3afb26
6060 needs :
6161 - setenv
6262 - release
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@d1fc2a29a5096fbaeb1d418dea126942bad91f52
79+ uses : ortelius/workflow-toolkit/.github/workflows/sbom-generation-workflow.yml@e9eeb0b981f6e48b26f16ff977bcae62ac3afb26
8080 needs :
8181 - setenv
8282 - release
Original file line number Diff line number Diff line change @@ -21,19 +21,19 @@ jobs:
2121
2222 steps :
2323 - name : Harden Runner
24- uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
24+ uses : step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
29+ uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
3030
3131 - name : Initialize CodeQL
32- uses : github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
32+ uses : github/codeql-action/init@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
3333 with :
3434 languages : " python"
3535
3636 - name : Perform CodeQL Analysis
37- uses : github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
37+ uses : github/codeql-action/analyze@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
3838 with :
3939 category : " /language:python"
Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ jobs:
2525 steps :
2626 # Git Checkout
2727 - name : Harden Runner
28- uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
28+ uses : step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
2929 with :
3030 egress-policy : audit
3131
3232 - name : Checkout Code
33- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
33+ uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
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
Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ jobs:
2626
2727 steps :
2828 - name : Harden Runner
29- uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
29+ uses : step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
34+ uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
3535 with :
3636 persist-credentials : false
3737
4444
4545 # Upload the results to GitHub's code scanning dashboard.
4646 - name : " Upload to code-scanning"
47- uses : github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
47+ uses : github/codeql-action/upload-sarif@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
4848 with :
4949 sarif_file : results.sarif
Original file line number Diff line number Diff line change 1- FROM cgr.dev/chainguard/python:latest-dev@sha256:b766b72cc0d6ca2b80f19083ec13266c613d7013928887ac7551780545d90827 AS builder
1+ FROM cgr.dev/chainguard/python:latest-dev@sha256:62dce7cededa1d3e50394d30b33e059a3b7c3d21187fea35bab4419abb245420 AS builder
22
33COPY . /app
44
@@ -9,7 +9,7 @@ ENV PATH=/home/nonroot/.local/bin:$PATH
99RUN wget -q -O - https://install.python-poetry.org | python -
1010RUN poetry install --no-root;
1111
12- FROM cgr.dev/chainguard/python:latest@sha256:aff11fb801109cee35db8f90412c78d6a242f4f105234764d33238553cc5d870
12+ FROM cgr.dev/chainguard/python:latest@sha256:136aad7020e00a98f617f3d3343cc7601b7823405eb2bc581eae5f5a8c21e8d0
1313USER nonroot
1414ENV DB_HOST localhost
1515ENV DB_NAME postgres
You can’t perform that action at this time.
0 commit comments