Bump org.springframework.boot from 3.3.4 to 3.3.5 in /checkout-example #30
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: Build Checkout | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: | |
- 'checkout-example/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'checkout-example/**' | |
jobs: | |
build-checkout: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '17' ] | |
name: checkout-example build with Java ${{ matrix.Java }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Grant checkout-example execute permission for gradlew | |
run: chmod +x checkout-example/gradlew | |
- name: Build checkout-example with Gradle | |
run: cd checkout-example; ./gradlew build |