2024-01-04 23:22:50 +01:00
|
|
|
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
|
|
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
|
|
|
|
|
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
|
|
# They are provided by a third-party and are governed by
|
|
|
|
# separate terms of service, privacy policy, and support
|
|
|
|
# documentation.
|
|
|
|
|
|
|
|
name: Java CI with Maven
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-11-06 16:08:03 +01:00
|
|
|
branches:
|
|
|
|
- develop
|
2024-01-04 23:22:50 +01:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-12-07 16:54:52 +01:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-04 23:22:50 +01:00
|
|
|
- name: Set up JDK 17
|
|
|
|
uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
java-version: '21'
|
|
|
|
distribution: 'temurin'
|
|
|
|
cache: maven
|
|
|
|
- name: Build with Maven
|
|
|
|
run: mvn -B package --file pom.xml
|
2024-01-04 23:37:49 +01:00
|
|
|
- name: find the element
|
|
|
|
run: find . -name "dependency-graph.json"
|
2024-01-04 23:22:50 +01:00
|
|
|
|
|
|
|
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
|
|
|
|
- name: Update dependency graph
|
2024-12-07 16:54:51 +01:00
|
|
|
uses: advanced-security/maven-dependency-submission-action@4f64ddab9d742a4806eeb588d238e4c311a8397d
|