Files
conventional-semantic-git-t…/.gitea/workflows/run-tas.yaml
Renovate Bot 91fab7cc22
Some checks failed
renovate/artifacts Artifact file update failure
renovate/stability-days Updates have not met minimum release age requirement
CI / Dry-Run Prerelease (pull_request) Successful in 2m49s
CI / Check Dist (pull_request) Successful in 2m52s
CI / Dry-Run (pull_request) Successful in 4m3s
Run TAS / run-tas (pull_request) Successful in 5m32s
CI / Test (pull_request) Successful in 5m44s
chore(deps): pin https://gitea.t000-n.de/t.behrendt/tas-actions action to 5e1031a
2026-02-19 11:01:27 +00:00

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@a55babe9a1d6d0dc92c221ae75a526f73c7928bd # 1.3.2
- uses: https://gitea.t000-n.de/t.behrendt/trivy-actions/setup-db@a55babe9a1d6d0dc92c221ae75a526f73c7928bd # 1.3.2
- 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' }}