From 1cd2d278149ccadca4f44761866438a578304eea Mon Sep 17 00:00:00 2001 From: alexcrea <42614139+alexcrea@users.noreply.github.com> Date: Sat, 14 Jun 2025 12:11:20 +0200 Subject: [PATCH] move back dependency workflow --- .github/workflows/dependency.yml | 45 -------------------------------- .github/workflows/gradle.yml | 14 +++++++++- 2 files changed, 13 insertions(+), 46 deletions(-) delete mode 100644 .github/workflows/dependency.yml diff --git a/.github/workflows/dependency.yml b/.github/workflows/dependency.yml deleted file mode 100644 index e45ecf6..0000000 --- a/.github/workflows/dependency.yml +++ /dev/null @@ -1,45 +0,0 @@ -# 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. -# This workflow will build a Java project with Gradle 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-gradle - -name: Java CI with Gradle - -on: - push: - branches: [ "master", "v2.0.0" ] - pull_request: - branches: [ "master", "v2.0.0" ] - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - dependency-submission: - - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - uses: actions/checkout@v4 - - name: Set up JDKs - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: | - 16 - 17 - 20 - 21 - - - name: Make gradlew executable - run: chmod +x ./gradlew - - # Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies. - # See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md - - name: Generate and submit dependency graph - uses: gradle/actions/dependency-submission@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 8d532e9..44c0fc7 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -14,7 +14,7 @@ on: branches: [ "master", "v2.0.0" ] concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.ref }} cancel-in-progress: true jobs: @@ -75,3 +75,15 @@ jobs: - name: Summarize tests results uses: jeantessier/test-summary-action@v1 if: ${{ always() }} + + dependency-submission: + needs: build + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + # Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies. + # See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md + - name: Generate and submit dependency graph + uses: gradle/actions/dependency-submission@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0