Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 16, 2024
1 parent 3db15c0 commit 22ca1b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install specific version 2.3 of OpenJPEG library
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
- name: Set environment variable for OpenJPEG library
run: echo "LD_LIBRARY_PATH=/tmp/openjpeg-v2.3.0-linux-x86_64/lib" >> $GITHUB_ENV
- name: Install TurboJPEG library
run: sudo apt update && sudo apt install libturbojpeg
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
check-latest: true
distribution: temurin
java-version: ${{ matrix.java }}
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-maven-artifacts
with:
Expand All @@ -46,9 +46,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-maven-artifacts
with:
Expand All @@ -65,7 +65,7 @@ jobs:
# Publish snapshot
- name: Set up JDK 11 for publishing a snapshot
if: github.event_name == 'push' && endswith(env.PROJECT_VERSION, 'SNAPSHOT')
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
check-latest: true
distribution: temurin
Expand All @@ -82,7 +82,7 @@ jobs:
# Publish release
- name: Set up JDK 11 for publishing a release
if: github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT')
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
check-latest: true
distribution: temurin
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.18</version>
<version>3.3.5</version>
</parent>

<name>DigitalCollections: Hymir IIIF Server</name>
Expand Down Expand Up @@ -202,7 +202,7 @@
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>7.4</version>
<version>8.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 22ca1b1

Please sign in to comment.