mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 09:51:01 +00:00
42 lines
783 B
YAML
42 lines
783 B
YAML
when:
|
|
- event: [pull_request, cron]
|
|
- event: push
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
- renovate/*
|
|
|
|
variables:
|
|
- &trivy_plugin docker.io/woodpeckerci/plugin-trivy:1.2.0
|
|
|
|
steps:
|
|
backend:
|
|
depends_on: []
|
|
image: *trivy_plugin
|
|
settings:
|
|
server: server
|
|
skip-dirs: web/,docs/
|
|
|
|
docs:
|
|
depends_on: []
|
|
image: *trivy_plugin
|
|
settings:
|
|
server: server
|
|
skip-dirs: node_modules/,plugins/woodpecker-plugins/node_modules/
|
|
dir: docs/
|
|
|
|
web:
|
|
depends_on: []
|
|
image: *trivy_plugin
|
|
settings:
|
|
server: server
|
|
skip-dirs: node_modules/
|
|
dir: web/
|
|
|
|
services:
|
|
server:
|
|
image: *trivy_plugin
|
|
settings:
|
|
service: true
|
|
db-repository: docker.io/aquasec/trivy-db:2
|
|
ports:
|
|
- 10000
|