Bump org.springframework:spring-context from 6.1.12 to 6.1.14 #2306
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Test | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Kustvakt | |
uses: actions/checkout@v4 | |
with: | |
path: Kustvakt | |
- name: Checkout Krill | |
uses: actions/checkout@v4 | |
with: | |
repository: KorAP/Krill | |
path: Krill | |
- name: Checkout Koral | |
uses: actions/checkout@v4 | |
with: | |
repository: KorAP/Koral | |
path: Koral | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Build and install Krill | |
run: mvn --file Krill/pom.xml install | |
- name: Build and install Koral | |
run: mvn --file Koral/pom.xml install | |
- name: Build and package Kustvakt full | |
run: mvn clean --file Kustvakt/pom.xml package | |
- name: Build and package Kustvakt lite | |
run: mvn clean --file Kustvakt/pom.xml package -P lite -DskipTests=true |