Skip to content

Bump com.aerospike:aerospike-reactor-client from 7.1.0 to 8.1.2 #404

Bump com.aerospike:aerospike-reactor-client from 7.1.0 to 8.1.2

Bump com.aerospike:aerospike-reactor-client from 7.1.0 to 8.1.2 #404

Workflow file for this run

name: Build project
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout repo using https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
# See: https://github.com/actions/cache/blob/master/examples.md#java---maven
- name: Maven cache and restore deps
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn clean test -B -U