Skip to content

Bump org.apache.avro:avro from 1.11.1 to 1.12.0 #152

Bump org.apache.avro:avro from 1.11.1 to 1.12.0

Bump org.apache.avro:avro from 1.11.1 to 1.12.0 #152

Workflow file for this run

name: Maven Build
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
java: [ 11, 17 ]
fail-fast: false
runs-on: ${{ matrix.os }}
timeout-minutes: 120
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload surefire artifact
uses: actions/upload-artifact@v2-preview
if: failure()
with:
name: ${{ matrix.os }}-surefire
path: target/surefire-reports/*