mirror of
https://github.com/Alfresco/alfresco-transform-core.git
synced 2026-09-16 18:12:54 +00:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
30 lines
742 B
YAML
30 lines
742 B
YAML
name: "Load Dependency Graph"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "master"
|
|
schedule:
|
|
- cron: '0 6 * * *'
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
scan-dependencies:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- uses: Alfresco/alfresco-build-tools/.github/actions/maven-dependency-scan@v18.21.0
|
|
with:
|
|
java-version: '21'
|
|
maven-version: '3.9.9'
|
|
maven-args: -Dscopes=compile,runtime
|
|
maven-username: ${{ secrets.NEXUS_USERNAME }}
|
|
maven-password: ${{ secrets.NEXUS_PASSWORD }}
|
|
maven-settings-path: ".ci.settings.xml"
|