diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eabdd74..bd56af8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: distribution: 'temurin' - name: Setup Gradle - uses: gradle/setup-gradle@v3 + uses: gradle/actions/setup-gradle@v3 - name: Build with Gradle run: ./gradlew build diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 07e8fc2..bbe322e 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -10,17 +10,14 @@ jobs: dependencies: runs-on: ubuntu-latest steps: - - name: checkout repository + - name: Checkout repository uses: actions/checkout@v4 - - name: setup jdk 17 + - name: Setup JDK 21 uses: actions/setup-java@v4 with: - java-version: 17 + java-version: 21 distribution: 'temurin' - - name: Build with Gradle and generate dependency Graph - uses: gradle/gradle-build-action@v2 - with: - arguments: dependencies - dependency-graph: 'generate-and-submit' \ No newline at end of file + - name: Generate and submit dependency graph + uses: gradle/actions/dependency-submission@v3 \ No newline at end of file