Skip to content

feat(container): update image docker.io/ghostfolio/ghostfolio ( 2.117… #3811

feat(container): update image docker.io/ghostfolio/ghostfolio ( 2.117…

feat(container): update image docker.io/ghostfolio/ghostfolio ( 2.117… #3811

Workflow file for this run

name: checkov
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main", "renovate/**" ]
paths:
- "kubernetes/**"
- "!kubernetes/**.md"
pull_request:
branches: [ "main" ]
paths:
- "kubernetes/**"
- "!kubernetes/**.md"
workflow_dispatch:
permissions: {}
jobs:
scan:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Checkov GitHub Action
uses: bridgecrewio/checkov-action@master
with:
soft_fail: true
output_format: cli,sarif
output_file_path: console,results.sarif
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
# Results are generated only on a success or failure
# this is required since GitHub by default won't run the next step
# when the previous one has failed. Security checks that do not pass will 'fail'.
# An alternative is to add `continue-on-error: true` to the previous step
# Or 'soft_fail: true' to checkov.
if: success() || failure()
with:
sarif_file: results.sarif