Skip to content

build(deps): bump software.amazon.awssdk:bom from 2.27.20 to 2.28.9 #2008

build(deps): bump software.amazon.awssdk:bom from 2.27.20 to 2.28.9

build(deps): bump software.amazon.awssdk:bom from 2.27.20 to 2.28.9 #2008

Workflow file for this run

name: Build
on:
push:
branches:
- "main"
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- '*.md'
- '*.adoc'
- '*.txt'
- '.all-contributorsrc'
pull_request:
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- '*.md'
- '*.adoc'
- '*.txt'
- '.all-contributorsrc'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- sync-client-type: "url"
async-client-type: "netty"
- sync-client-type: "apache"
async-client-type: "netty"
- sync-client-type: "aws-crt"
async-client-type: "aws-crt"
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: maven
- name: Build with Maven
run: ./mvnw -B formatter:validate verify --file pom.xml -Dnative -Dsync-client-type=${{ matrix.sync-client-type }} -Dasync-client-type=${{ matrix.async-client-type }}