diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a5776af..8749e9f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: run: ./gradlew build test --stacktrace --no-daemon - name: capture build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: Artifacts path: '**/build/libs/*.jar' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 226bf10..b8bf440 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: run: ./gradlew build test --stacktrace --no-daemon -Pversion=${{ steps.get_version.outputs.RELEASE_VERSION }} - name: capture build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: Artifacts path: '**/build/libs/*.jar'