Skip to content

Bump software.amazon.awssdk:bom from 2.26.16 to 2.26.17 in /ChatGPT #295

Bump software.amazon.awssdk:bom from 2.26.16 to 2.26.17 in /ChatGPT

Bump software.amazon.awssdk:bom from 2.26.16 to 2.26.17 in /ChatGPT #295

Workflow file for this run

name: Build and Validate SAM Template
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'
cache: maven
- name: Install ChimeSMALibrary Parent POM
working-directory: ./ChimeSMALibrary
run: mvn -N install --no-transfer-progress
- name: Build up all the libraries
run: mvn -B install -DskipTests --no-transfer-progress
- name: Setup AWS SAM
uses: aws-actions/setup-sam@v2
with:
use-installer: true
- name: Cache SAM Build files
uses: actions/cache@v4
with:
path: .aws-sam
key: ${{ runner.os }}-sam
- name: SAM Build
run: sam build
- name: Validate SAM Template
run: sam validate --lint