Skip to content

Bump org.assertj:assertj-core from 3.26.0 to 3.26.3 #129

Bump org.assertj:assertj-core from 3.26.0 to 3.26.3

Bump org.assertj:assertj-core from 3.26.0 to 3.26.3 #129

Workflow file for this run

name: Java CI with Maven
on:
push:
# dependabot will create both branches and pull request
# only run on pull requests to avoid running twice and creating a release draft
branches-ignore:
- 'dependabot/**'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Cache multiple paths
uses: actions/cache@v2
with:
path: |
~/.m2/repository
~/.m2/wrapper
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: |
./mvnw -B test
- name: publish
if: ${{ success() && github.event_name != 'pull_request' && github.ref == 'refs/heads/master' }}
env:
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
run: |
mvn deploy --settings cisettings.xml -DskipTests=true -B