fix(deps): update seleniumversion to v4.28.0 #417
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: | |
push: | |
branches: | |
- '[3-9]+.[0-9]+.x' | |
pull_request: | |
branches: | |
- '[3-9]+.[0-9]+.x' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: "Build Project" | |
strategy: | |
matrix: | |
os: [ubuntu-24.04] # windows-latest and macos-latest do not provide a container environment | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: "📥 Checkout repository" | |
uses: actions/checkout@v4 | |
- name: "☕️ Setup JDK" | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: liberica | |
- name: "🐘 Setup Gradle" | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
develocity-access-key: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
- name: "🔨 Build project" | |
id: build | |
env: | |
GITHUB_MAVEN_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
run: ./gradlew build | |
- name: "🏃♀️Run functional tests" | |
env: | |
GITHUB_MAVEN_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cd spock-container-test-app | |
./gradlew check | |
publish: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
needs: 'build' | |
steps: | |
- name: "📥 Checkout repository" | |
uses: actions/checkout@v4 | |
- name: "☕️ Setup JDK" | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: liberica | |
- name: "🐘 Setup Gradle" | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
develocity-access-key: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
- name: "📤 Publish Snapshot version to Artifactory (repo.grails.org)" | |
env: | |
MAVEN_PUBLISH_USERNAME: ${{ secrets.MAVEN_PUBLISH_USERNAME }} | |
MAVEN_PUBLISH_PASSWORD: ${{ secrets.MAVEN_PUBLISH_PASSWORD }} | |
MAVEN_PUBLISH_URL: ${{ secrets.MAVEN_PUBLISH_SNAPSHOT_URL }} | |
run: ./gradlew publish | |
- name: "📖 Generate Snapshot Documentation" | |
if: success() | |
id: docs | |
run: ./gradlew groovydoc | |
- name: "📤 Publish Snapshot Documentation to Github Pages" | |
if: steps.docs.outcome == 'success' | |
uses: grails/github-pages-deploy-action@grails | |
env: | |
BRANCH: gh-pages | |
COMMIT_EMAIL: '[email protected]' | |
COMMIT_NAME: 'grails-build' | |
DOC_FOLDER: gh-pages | |
FOLDER: build/docs | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} |