Skip to content

Quick Patch for CVE-2024-3596 to include Message-Authenticator in all… #66

Quick Patch for CVE-2024-3596 to include Message-Authenticator in all…

Quick Patch for CVE-2024-3596 to include Message-Authenticator in all… #66

Workflow file for this run

name: ci
on:
push:
branches: [master, main, develop]
pull_request:
branches: [master, main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v2
with:
java-version: 8
distribution: adopt
settings-path: ${{ github.workspace }}
- name: Build with Maven
run: mvn -V -B -ntp package --file pom.xml
- name: Calculate dependency tree
run: mvn -V -B -ntp dependency:tree --file pom.xml
- name: Publish to https://maven.pkg.github.com/ctran/TinyRadius
run: mvn -V -B -ntp -s $GITHUB_WORKSPACE/settings.xml deploy
if: ${{ github.event_name == 'push' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}