Skip to content

fix(deps): update dependency com.digitalpetri.netty:netty-channel-fsm… #5658

fix(deps): update dependency com.digitalpetri.netty:netty-channel-fsm…

fix(deps): update dependency com.digitalpetri.netty:netty-channel-fsm… #5658

Workflow file for this run

---
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# 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:
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
java: [ '8', '11' ]
fail-fast: false
name: Java ${{ matrix.java }} build
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn clean install -DskipTests=false