This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
Upgrade commons-compress due to CVS-2023-42503 #99
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: Avro Compatibility Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: "Compatibility: avro ${{ matrix.avro }}/gradle ${{ matrix.gradle }}" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
avro: ["1.11.0", "1.11.1", "1.11.2" , "1.11.3"] | |
gradle: ["5.1", "7.6"] | |
java: ["8"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: ${{ matrix.java }} | |
- uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: testCompatibility -PavroVersion=${{ matrix.avro }} -PgradleVersion=${{ matrix.gradle }} |