Skip to content

Upgrade Avro to 1.11.4 to address CVE-2024-47561 #78

Upgrade Avro to 1.11.4 to address CVE-2024-47561

Upgrade Avro to 1.11.4 to address CVE-2024-47561 #78

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: License check
run: mvn -B license:check
- name: Build and test
run: |
source src/build.sh
build_base_connectors
build-camel:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: License check
run: mvn -B license:check
- name: Build and test
run: |
source src/build.sh
build_camel_connectors