Update dependency com.codeborne:selenide to v7.3.3 #248
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 Spring Boot Maven Projects | |
on: | |
push: | |
schedule: | |
- cron: '0 5 * * SUN' | |
jobs: | |
build-maven-parent-pom: | |
runs-on: ubuntu-latest | |
name: Build Java Projects | |
steps: | |
- name: VCS checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Build all projects with Maven | |
run: ./mvnw verify -C --fail-at-end -B -T 1C |