Upgrade Maven version from 3.9.3 to 3.9.4 #1
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: Verify Build | |
on: | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
verification: | |
name: Verification | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out project | |
uses: actions/checkout@v3 | |
- name: Set up JDK 6 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '6.0.119' | |
distribution: 'zulu' | |
architecture: x64 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'liberica' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build and bundle plugin artifact | |
run: ./gradlew clean build -Porg.gradle.java.installations.fromEnv=JAVA_HOME_6_0_119_X64 -PjavaCompilerVersion=6 | |
env: | |
GRADLE_ENTERPRISE_TEST_INSTANCE: ${{ secrets.GE_ACCESS_TOKEN != null && 'https://etiennestuder.gradle-enterprise.cloud' || '' }} | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN != null && secrets.GE_ACCESS_TOKEN || 'dummy.server=dummy_value' }} |