All checks were successful
CD / Release (push) Successful in 14s
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | Type | Update | |---|---|---|---|---|---| | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`24.10.13` → `24.12.0`](https://renovatebot.com/diffs/npm/@types%2fnode/24.10.13/24.12.0) |  |  | devDependencies | minor | | [https://gitea.t000-n.de/t.behrendt/trivy-actions](https://gitea.t000-n.de/t.behrendt/trivy-actions) | `1.4.1` → `1.4.7` |  |  | action | patch | --- ### Release Notes <details> <summary>t.behrendt/trivy-actions (https://gitea.t000-n.de/t.behrendt/trivy-actions)</summary> ### [`v1.4.7`](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.6...1.4.7) [Compare Source](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.6...1.4.7) ### [`v1.4.6`](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.5...1.4.6) [Compare Source](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.5...1.4.6) ### [`v1.4.5`](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.4...1.4.5) [Compare Source](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.4...1.4.5) ### [`v1.4.4`](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.3...1.4.4) [Compare Source](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.3...1.4.4) ### [`v1.4.3`](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.2...1.4.3) [Compare Source](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.2...1.4.3) ### [`v1.4.2`](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.1...1.4.2) [Compare Source](https://gitea.t000-n.de/t.behrendt/trivy-actions/compare/1.4.1...1.4.2) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41LjQiLCJ1cGRhdGVkSW5WZXIiOiI0My41LjQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImFjdGlvbiIsImRlcHMiXX0=--> Reviewed-on: #67 Reviewed-by: t.behrendt <t.behrendt@noreply.localhost> Co-authored-by: Renovate Bot <renovate@t00n.de> Co-committed-by: Renovate Bot <renovate@t00n.de>
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
name: Run TAS
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
inputs:
|
|
branch:
|
|
description: "The branch to run TAS on"
|
|
required: true
|
|
default: "main"
|
|
schedule:
|
|
- cron: "0 6 * * 5"
|
|
|
|
jobs:
|
|
run-tas:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: https://gitea.t000-n.de/t.behrendt/trivy-actions/setup-trivy@a6508d695d7bb6137f14372392d5c312c98225cf # 1.4.7
|
|
- uses: https://gitea.t000-n.de/t.behrendt/trivy-actions/setup-db@a6508d695d7bb6137f14372392d5c312c98225cf # 1.4.7
|
|
- env:
|
|
TRIVY_CACHE_DIR: ${{ runner.temp }}/trivy
|
|
run: |
|
|
trivy fs --cache-dir "$TRIVY_CACHE_DIR" --exit-code 0 --format sarif --output sarif.json .
|
|
- uses: https://gitea.t000-n.de/t.behrendt/tas-actions/tas-upload-sarif@5e1031a9eff4a83fc17d0893332ad896386c082f # 0.0.3
|
|
with:
|
|
tas-base-url: ${{ vars.TAS_BASE_URL }}
|
|
sarif-file: sarif.json
|
|
owner: t.behrendt
|
|
repo: conventional-semantic-git-tag-increment
|
|
branch: ${{ inputs.branch || github.head_ref || 'main' }}
|