dependency updates (#1790)

This commit is contained in:
Pasqual Koschmieder 2022-07-31 02:01:11 +02:00 committed by GitHub
parent d40762e69d
commit 7e137cbfc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 33 additions and 64 deletions

View File

@ -8,12 +8,15 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - name: Checkout repository
uses: actions/checkout@v3
- name: Setup java - name: Setup java
uses: actions/setup-java@v2 uses: actions/setup-java@v3
with: with:
distribution: 'temurin' distribution: 'temurin'
java-version: '17' java-version: '17'
cache: 'maven'
- name: Run maven build lifecycle - name: Run maven build lifecycle
run: mvn --batch-mode clean test package run: mvn --batch-mode clean test package
@ -21,5 +24,5 @@ jobs:
- name: Upload plugin file - name: Upload plugin file
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: ProtocolLib name: ProtocolLib
path: target/ProtocolLib.jar path: target/ProtocolLib.jar

View File

@ -1,14 +1,3 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL" name: "CodeQL"
on: on:
@ -29,47 +18,24 @@ jobs:
contents: read contents: read
security-events: write security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning. - name: Setup java
- name: Initialize CodeQL uses: actions/setup-java@v3
uses: github/codeql-action/init@v2 with:
with: distribution: 'temurin'
languages: ${{ matrix.language }} java-version: '17'
# If you wish to specify custom queries, you can do so here or in a config file. cache: 'maven'
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
- name: Setup java - name: Initialize CodeQL
uses: actions/setup-java@v2 uses: github/codeql-action/init@v2
with: with:
distribution: 'temurin' languages: 'java'
java-version: '17'
- name: Run maven build lifecycle - name: Run maven build lifecycle
run: mvn --batch-mode clean test package run: mvn --batch-mode clean test package
# Command-line programs to run using the OS shell. - name: Perform CodeQL Analysis
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun uses: github/codeql-action/analyze@v2
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2

View File

@ -1,5 +1,5 @@
before_install: before_install:
- source "$HOME/.sdkman/bin/sdkman-init.sh" - source "$HOME/.sdkman/bin/sdkman-init.sh"
- sdk update - sdk update
- sdk install java 17.0.1-tem - sdk install java 17.0.4-tem
- sdk use java 17.0.1-tem - sdk use java 17.0.4-tem

16
pom.xml
View File

@ -16,9 +16,9 @@
<project.build.number></project.build.number> <project.build.number></project.build.number>
<project.fullVersion>${project.version}</project.fullVersion> <project.fullVersion>${project.version}</project.fullVersion>
<junit.version>5.8.2</junit.version> <junit.version>5.9.0</junit.version>
<mockito.version>4.3.1</mockito.version> <mockito.version>4.6.1</mockito.version>
<netty.version>4.1.74.Final</netty.version> <netty.version>4.1.77.Final</netty.version>
<spigot.version>1.19.1-R0.1-SNAPSHOT</spigot.version> <spigot.version>1.19.1-R0.1-SNAPSHOT</spigot.version>
</properties> </properties>
@ -40,7 +40,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version> <version>3.3.0</version>
<executions> <executions>
<execution> <execution>
<phase>package</phase> <phase>package</phase>
@ -73,7 +73,7 @@
<plugin> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.10.0</version> <version>3.10.1</version>
<configuration> <configuration>
<source>1.8</source> <source>1.8</source>
<target>1.8</target> <target>1.8</target>
@ -100,7 +100,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version> <version>3.0.0-M7</version>
<dependencies> <dependencies>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine --> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
<dependency> <dependency>
@ -125,7 +125,7 @@
<plugin> <plugin>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version> <version>3.4.0</version>
<configuration> <configuration>
<failOnError>false</failOnError> <failOnError>false</failOnError>
<encoding>ISO-8859-1</encoding> <encoding>ISO-8859-1</encoding>
@ -195,7 +195,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version> <version>3.4.0</version>
<executions> <executions>
<execution> <execution>
<id>attach-javadocs</id> <id>attach-javadocs</id>