Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.github.jnr</groupId>
<artifactId>jnr-ffi</artifactId>
<version>2.2.15</version>
<version>2.2.17</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
Expand Down
Loading