Skip to content

maven: bump software.amazon.awssdk:dynamodb from 2.26.7 to 2.26.13 #379

maven: bump software.amazon.awssdk:dynamodb from 2.26.7 to 2.26.13

maven: bump software.amazon.awssdk:dynamodb from 2.26.7 to 2.26.13 #379

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
test-analyze:
name: Test and analyze code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test
# -B (batch mode) to suppress progress (pollutes logs)
run: mvn -B test
- name: Run Spark with Iceberg, MinIO
run: docker compose up -d --wait
- name: Run integration tests
run: mvn integration-test verify