0f7688ac5e
- Aggiorna checkout v4→v6, setup-python v5→v5.2.0, setup-android v3→v4 - Aggiorna upload-artifact v3→v4, docker/login-action v3→v4 - Aggiunge needs su auto-release in tutti gli esempi (fix esecuzione parallela) - Aggiunge token esplicito nel checkout come workaround bug Gitea #31900 - Aggiunge job dependency-outdated mancante in libreria-npm/maintenance.yml - Aggiorna schedule: libreria-npm mercoledì 02:00, microservizio lunedì 02:00 - Migra tutti i riferimenti da gitea.com/Punga78 a gitea.pzetatouch.it/devops Fixes #1 @3h
37 lines
1.3 KiB
YAML
37 lines
1.3 KiB
YAML
# Copia in: .gitea/workflows/maintenance.yml
|
|
# Trigger:
|
|
# - PR merged → cleanup branch sorgente
|
|
# - Ogni lunedì 08:00 → security audit vulnerabilità (settimanale)
|
|
# - Ogni 1° del mese → controllo pacchetti obsoleti (mensile)
|
|
# - Manuale → workflow_dispatch (esegue tutti i job di manutenzione)
|
|
|
|
name: Maintenance
|
|
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
schedule:
|
|
- cron: '0 8 * * 1' # ogni lunedì alle 08:00 → security audit
|
|
- cron: '0 8 1 * *' # ogni 1° del mese alle 08:00 → outdated check
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
branch-cleanup:
|
|
if: gitea.event_name == 'pull_request' && gitea.event.pull_request.merged == true
|
|
uses: https://gitea.pzetatouch.it/devops/shared-actions/.gitea/workflows/branch-cleanup.yml@v1
|
|
secrets: inherit
|
|
|
|
dependency-audit:
|
|
if: >
|
|
gitea.event_name == 'workflow_dispatch' ||
|
|
(gitea.event_name == 'schedule' && gitea.event.schedule == '0 8 * * 1')
|
|
uses: https://gitea.pzetatouch.it/devops/shared-actions/.gitea/workflows/dependency-check.yml@v1
|
|
secrets: inherit
|
|
|
|
dependency-outdated:
|
|
if: >
|
|
gitea.event_name == 'workflow_dispatch' ||
|
|
(gitea.event_name == 'schedule' && gitea.event.schedule == '0 8 1 * *')
|
|
uses: https://gitea.pzetatouch.it/devops/shared-actions/.gitea/workflows/dependency-outdated.yml@v1
|
|
secrets: inherit
|