Skip to content

Bump org.apache.avro:avro from 1.10.2 to 1.11.3 #39

Bump org.apache.avro:avro from 1.10.2 to 1.11.3

Bump org.apache.avro:avro from 1.10.2 to 1.11.3 #39

Workflow file for this run

name: XSD-AVDL Build - Linux - Java 11
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
settings-path: ${{ github.workspace }}
- name: Cache Maven Modules
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-xsd-avdl-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-xsd-avdl-
- name: List the Settings Directory
run: |
ls -la $GITHUB_WORKSPACE/.github/workflows/settings.xml
- name: Cat the Provided Settings
run: |
cat $GITHUB_WORKSPACE/.github/workflows/settings.xml
- name: Cat the Generated Settings
run: |
cat $GITHUB_WORKSPACE/settings.xml
- name: Build with Maven
run: mvn -s $GITHUB_WORKSPACE/.github/workflows/settings.xml -B -U clean install --file pom.xml
env:
TOKEN_PACKAGE_READ_WRITE_DELETE: ${{ secrets.token_package_read_write_delete }}