Indexing / DCAT multilingual support (#8377) #1271
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This job sends the maven dependency tree of the project to Github | |
# for further security analysis. | |
name: "MavenDepTreeSubmission" | |
on: | |
push: | |
branches: [ main ] | |
schedule: | |
- cron: '44 22 * * 5' | |
jobs: | |
update-maven-dep-tree: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
show-progress: 'false' | |
- name: Setup Java JDK | |
uses: actions/[email protected] | |
with: | |
java-version: 11 | |
# Java distribution. See the list of supported distributions in README file | |
distribution: temurin | |
# The package type (jdk, jre, jdk+fx, jre+fx) | |
java-package: jdk | |
cache: maven | |
- name: Submit Dependency Snapshot | |
uses: advanced-security/maven-dependency-submission-action@v4 |