Skip to content

fix(deps): update dependency org.springframework.boot:spring-boot-sta… #437

fix(deps): update dependency org.springframework.boot:spring-boot-sta…

fix(deps): update dependency org.springframework.boot:spring-boot-sta… #437

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