Skip to content

Bump io.netty:netty-bom from 4.2.12.Final to 4.2.15.Final #2481

Bump io.netty:netty-bom from 4.2.12.Final to 4.2.15.Final

Bump io.netty:netty-bom from 4.2.12.Final to 4.2.15.Final #2481

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: "17"
distribution: 'temurin'
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.8.4
- uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven
- name: Compilation and Installation
run: bash scripts/build.sh install
- name: publish coverage report
run: bash <(curl -s https://codecov.io/bash)