From 8e40a4c5e32d837f960c2e7ec7b0f9470fd42e41 Mon Sep 17 00:00:00 2001 From: at055612 <22818309+at055612@users.noreply.github.com> Date: Tue, 4 Feb 2025 11:42:22 +0000 Subject: [PATCH 1/2] Uplidt LMDB lib from 0.9.29 to 0.9.31 --- .github/workflows/maven.yml | 4 ++-- cross-compile.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 32668e3..e2e3db1 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -32,7 +32,7 @@ jobs: run: mvn -B verify -DgcRecordWrites=1000 - name: Store built native libraries for later jobs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: native-libraries path: | @@ -64,7 +64,7 @@ jobs: cache: maven - name: Fetch built native libraries - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: native-libraries path: src/main/resources/org/lmdbjava diff --git a/cross-compile.sh b/cross-compile.sh index 1ebf92f..ebf92d7 100755 --- a/cross-compile.sh +++ b/cross-compile.sh @@ -3,7 +3,7 @@ set -o errexit rm -rf lmdb -git clone --depth 1 --branch LMDB_0.9.29 https://github.com/LMDB/lmdb.git +git clone --depth 1 --branch LMDB_0.9.31 https://github.com/LMDB/lmdb.git pushd lmdb/libraries/liblmdb trap popd SIGINT From ed6d307d9e729c4023c9689e65227dbd64852111 Mon Sep 17 00:00:00 2001 From: at055612 <22818309+at055612@users.noreply.github.com> Date: Tue, 4 Feb 2025 11:51:43 +0000 Subject: [PATCH 2/2] Uplift upload-artifact action to v4 --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index e2e3db1..4fc1b22 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -73,7 +73,7 @@ jobs: run: mvn -B test -Dtest=VerifierTest -DverificationSeconds=10 - name: Upload Surefire reports on test failure - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: surefire-test-log @@ -116,7 +116,7 @@ jobs: MAVEN_CENTRAL_TOKEN: ${{ secrets.nexus_password }} - name: Debug settings.xml - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: settings.xml