Bump org.springframework:spring-core from 5.3.39 to 6.1.14 #119
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: Java CI | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
mongodb-version: [4.4] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Lint markdown file | |
uses: nosborn/[email protected] | |
with: | |
files: . | |
- name: Lint yaml files | |
uses: ibiqlik/action-yamllint@v3 | |
- uses: supercharge/[email protected] | |
with: | |
mongodb-version: ${{ matrix.mongodb-version }} | |
mongodb-replica-set: test-rs | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -B clean install | |
- name: Codecov | |
uses: codecov/[email protected] |