Skip to content

Bump org.springframework.data:spring-data-commons from 2.7.2 to 3.2.3 #1310

Bump org.springframework.data:spring-data-commons from 2.7.2 to 3.2.3

Bump org.springframework.data:spring-data-commons from 2.7.2 to 3.2.3 #1310

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17]
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
check-latest: true
distribution: adopt
java-version: ${{ matrix.java }}
- uses: actions/cache@v3
env:
cache-name: cache-maven-artifacts
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Build with Maven
run: mvn -B verify