@@ -13,21 +13,21 @@ jobs:
1313 build :
1414 runs-on : ubuntu-24.04
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
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@v3
24+ uses : actions/setup-java@v4
2525 with :
2626 check-latest : true
2727 distribution : temurin
2828 java-version : ${{ matrix.java }}
2929 - name : Set up cache
30- uses : actions/cache@v3
30+ uses : actions/cache@v4
3131 env :
3232 cache-name : cache-maven-artifacts
3333 with :
4646 runs-on : ubuntu-24.04
4747 steps :
4848 - name : Check out repository
49- uses : actions/checkout@v3
49+ uses : actions/checkout@v4
5050 - name : Set up cache
51- uses : actions/cache@v3
51+ uses : actions/cache@v4
5252 env :
5353 cache-name : cache-maven-artifacts
5454 with :
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@v3
68+ uses : actions/setup-java@v4
6969 with :
7070 check-latest : true
7171 distribution : temurin
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@v3
85+ uses : actions/setup-java@v4
8686 with :
8787 check-latest : true
8888 distribution : temurin
0 commit comments