Skip to content

Upgrade jsch from 0.1.52 to 0.1.55 to fix CVE-2016-5725 #12

Upgrade jsch from 0.1.52 to 0.1.55 to fix CVE-2016-5725

Upgrade jsch from 0.1.52 to 0.1.55 to fix CVE-2016-5725 #12

Workflow file for this run

name: Java CI with Gradle
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
java-version:
- 8
steps:
- uses: actions/checkout@v4
with:
show-progress: false
fetch-depth: 0
# Step to set up JDK
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
cache: gradle
# Step to set up gradle.properties
- name: Set up gradle.properties
run: |
echo "skipSigning=false" >> gradle.properties
# Step to run Gradle build
- name: Gradle Build
run: ./gradlew build