Update netty-all to 4.2.10.Final (#4160) #2071
This file contains hidden or 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: CI Packaging | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| changes: | |
| name: Detect Changes | |
| runs-on: ubuntu-latest | |
| outputs: | |
| packaging: ${{ steps.filter.outputs.packaging }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| packaging: | |
| - '**.scala' | |
| - '**.java' | |
| - '**.sbt' | |
| - '.github/workflows/package-test.yml' | |
| test_packaging: | |
| name: Packaging Test | |
| runs-on: ubuntu-latest | |
| needs: changes | |
| if: needs.changes.outputs.packaging == 'true' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # Fetch all tags so that sbt-dynver can find the previous release version | |
| fetch-depth: 0 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '21' | |
| - name: Packaging test | |
| run: ./sbt publishAllLocal |