Skip to content

Commit d81104f

Browse files
fix(deps): update all dependencies
1 parent 236f0a4 commit d81104f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ jobs:
1313
build:
1414
runs-on: ubuntu-24.04
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: Install specific version 2.3 of OpenJPEG library
1818
run: wget https://github.com/uclouvain/openjpeg/releases/download/v2.3.0/openjpeg-v2.3.0-linux-x86_64.tar.gz -O /tmp/openjpeg.tar.gz && cd /tmp/ && tar -xvf /tmp/openjpeg.tar.gz
1919
- name: Set environment variable for OpenJPEG library
2020
run: echo "LD_LIBRARY_PATH=/tmp/openjpeg-v2.3.0-linux-x86_64/lib" >> $GITHUB_ENV
2121
- name: Install TurboJPEG library
2222
run: sudo apt update && sudo apt install libturbojpeg
2323
- name: Set up JDK
24-
uses: actions/setup-java@v4
24+
uses: actions/setup-java@v5
2525
with:
2626
check-latest: true
2727
distribution: temurin
2828
java-version: ${{ matrix.java }}
2929
- name: Set up cache
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
env:
3232
cache-name: cache-maven-artifacts
3333
with:
@@ -46,9 +46,9 @@ jobs:
4646
runs-on: ubuntu-24.04
4747
steps:
4848
- name: Check out repository
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v6
5050
- name: Set up cache
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
env:
5353
cache-name: cache-maven-artifacts
5454
with:
@@ -65,7 +65,7 @@ jobs:
6565
# Publish snapshot
6666
- name: Set up JDK 11 for publishing a snapshot
6767
if: github.event_name == 'push' && endswith(env.PROJECT_VERSION, 'SNAPSHOT')
68-
uses: actions/setup-java@v4
68+
uses: actions/setup-java@v5
6969
with:
7070
check-latest: true
7171
distribution: temurin
@@ -82,7 +82,7 @@ jobs:
8282
# Publish release
8383
- name: Set up JDK 11 for publishing a release
8484
if: github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT')
85-
uses: actions/setup-java@v4
85+
uses: actions/setup-java@v5
8686
with:
8787
check-latest: true
8888
distribution: temurin

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<version.assertj>3.26.3</version.assertj>
5656
<version.jnr-ffi>2.2.16</version.jnr-ffi>
5757
<version.slf4j>2.0.16</version.slf4j>
58-
<version.junit-jupiter>5.11.0</version.junit-jupiter>
58+
<version.junit-jupiter>6.0.3</version.junit-jupiter>
5959

6060
<!-- plugins -->
6161
<version.jacoco-maven-plugin>0.8.12</version.jacoco-maven-plugin>

0 commit comments

Comments
 (0)