Skip to content

chore(deps): update localstack/localstack docker tag to v3.6.0 #192

chore(deps): update localstack/localstack docker tag to v3.6.0

chore(deps): update localstack/localstack docker tag to v3.6.0 #192

Workflow file for this run

name: aws-lambda-project
on:
push:
paths:
- "aws-lambda-project/**"
branches: [main]
pull_request:
paths:
- "aws-lambda-project/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
name: Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: "aws-lambda-project"
strategy:
matrix:
distribution: [ 'temurin' ]
java: [ '21' ]
steps:
- uses: actions/checkout@v4
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
cache: 'maven'
- name: Build with Maven
run: ./mvnw clean verify