Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all dependencies (major) #456

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
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
6 changes: 3 additions & 3 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.4.0</version>
</parent>

<name>DigitalCollections: Hymir IIIF Server</name>
Expand Down Expand Up @@ -77,7 +77,7 @@
<versionName>${project.version} manually built by ${user.name} at ${maven.build.timestamp}</versionName>

<!-- versions are referenced in application-webjars.yml -->
<version.webjar-bootstrap>4.6.0</version.webjar-bootstrap>
<version.webjar-bootstrap>5.3.3</version.webjar-bootstrap>
<version.webjar-html5shiv>3.7.3-1</version.webjar-html5shiv>
<version.webjar-ie10-viewport-bug-workaround>1.0.3</version.webjar-ie10-viewport-bug-workaround>
<version.webjar-jquery>3.7.1</version.webjar-jquery>
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
Loading