Skip to content

Handle race condition in which the data is updated while the sync is … #8114

Handle race condition in which the data is updated while the sync is …

Handle race condition in which the data is updated while the sync is … #8114

Workflow file for this run

name: Build Maven Package
on:
push:
branches:
- '**'
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: '21'
- name: Load local Maven repository cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run mvn package
run: mvn -B package --file pom.xml