Skip to content

Bump org.jetbrains:annotations from 24.0.1 to 24.1.0 #31

Bump org.jetbrains:annotations from 24.0.1 to 24.1.0

Bump org.jetbrains:annotations from 24.0.1 to 24.1.0 #31

Workflow file for this run

name: Build
on:
push:
create:
types: [tag]
pull_request_target:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '17'
- name: Cache Maven repo
uses: actions/cache@v2
id: cache
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Build with Maven
run: mvn clean package --file pom.xml -X -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2