Skip to content

[Snyk] Upgrade org.jupnp:org.jupnp.support from 2.7.0 to 2.7.1 #23

[Snyk] Upgrade org.jupnp:org.jupnp.support from 2.7.0 to 2.7.1

[Snyk] Upgrade org.jupnp:org.jupnp.support from 2.7.0 to 2.7.1 #23

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:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.2.4
with:
# Artifact name
name: AutoUpnp.jar
# A file, directory or wildcard pattern that describes what to upload
path: target/
# The desired behavior if no files are found using the provided path.
# - name: Release Jar
# uses: softprops/action-gh-release@v0.1.5
# with:
# files: target/AutoUpnp.jar