From ce0ee7b8f6b5b3a8c852b6f74958b8a5f4bd7929 Mon Sep 17 00:00:00 2001 From: at055612 <22818309+at055612@users.noreply.github.com> Date: Wed, 28 Feb 2024 17:03:08 +0000 Subject: [PATCH 1/5] Uplift jnr-ffi to 2.2.16 Potentially fixes this https://github.com/jnr/jffi/issues/138 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 75ce0fe6..59c61aa0 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ com.github.jnr jnr-ffi - 2.2.15 + 2.2.16 com.google.code.findbugs From 5f4a4b4e84d6dd2cf05992a637239fda617448aa Mon Sep 17 00:00:00 2001 From: at055612 <22818309+at055612@users.noreply.github.com> Date: Tue, 4 Feb 2025 11:28:27 +0000 Subject: [PATCH 2/5] Uplift jnr-ffi to 2.2.17 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 59c61aa0..9ef2ea4f 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ com.github.jnr jnr-ffi - 2.2.16 + 2.2.17 com.google.code.findbugs From 0d78a010f690b3fd09a710d68e6d0a228a8808a2 Mon Sep 17 00:00:00 2001 From: at055612 <22818309+at055612@users.noreply.github.com> Date: Tue, 4 Feb 2025 11:32:49 +0000 Subject: [PATCH 3/5] Uplift actions/upload-artifact to v4 --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 32668e32..ade04cd6 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: | From 113c404a39f85a913b59db2a723f00bf57f198dd Mon Sep 17 00:00:00 2001 From: at055612 <22818309+at055612@users.noreply.github.com> Date: Tue, 4 Feb 2025 11:43:45 +0000 Subject: [PATCH 4/5] Uplift download-artifact action to v4 --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index ade04cd6..e2e3db16 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -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 From 734243aec901c13c119a77f23eee5e64de6e0e9a Mon Sep 17 00:00:00 2001 From: at055612 <22818309+at055612@users.noreply.github.com> Date: Tue, 4 Feb 2025 11:50:27 +0000 Subject: [PATCH 5/5] 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 e2e3db16..4fc1b22c 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