Bump commons-codec:commons-codec from 1.15 to 1.16.0 in /mr #328
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: Distribution check | |
on: [push, pull_request] | |
jobs: | |
distribution-check: | |
name: Distribution check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
cache: 'gradle' | |
- name: 'Setup: Java 8 env' | |
run: echo "JAVA8_HOME=$JAVA_HOME" >> $GITHUB_ENV | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'gradle' | |
- name: 'Setup: Java 11 env' | |
run: echo "JAVA11_HOME=$JAVA_HOME" >> $GITHUB_ENV | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: 'Setup: Java 17 env' | |
run: echo "JAVA17_HOME=$JAVA_HOME" >> $GITHUB_ENV | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Run distribution on snapshot | |
run: | | |
./gradlew clean -S -Dbuild.snapshot=true -Dorg.gradle.warning.mode=summary distribution --no-configuration-cache --no-daemon --info | |
- name: Run distribution on release | |
run: | | |
./gradlew clean -S -Dbuild.snapshot=false -Dorg.gradle.warning.mode=summary distribution --no-configuration-cache --no-daemon --info |