Skip to content

fix(deps): update dependency org.springframework.boot:spring-boot-starter-parent to v3.4.0 #726

fix(deps): update dependency org.springframework.boot:spring-boot-starter-parent to v3.4.0

fix(deps): update dependency org.springframework.boot:spring-boot-starter-parent to v3.4.0 #726

name: spring-boot-postgres
on:
push:
paths:
- 'spring-boot-postgres-java/**'
- 'spring-boot-postgres-kotlin/**'
- '.github/workflows/spring-boot-postgres.yml'
pull_request:
paths:
- 'spring-boot-postgres-java/**'
- 'spring-boot-postgres-kotlin/**'
- '.github/workflows/spring-boot-postgres.yml'
jobs:
postgres-java:
name: Build spring boot using postres with java version ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17,18 ]
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Setup java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- run: mvn -B -f spring-boot-postgres-java clean verify
postgres-kotlin:
name: Build spring boot using postres with java version ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17,18 ]
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Setup java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- run: mvn -B -f spring-boot-postgres-kotlin clean verify