build(deps): bump software.amazon.awscdk:aws-cdk-lib from 2.161.1 to 2.162.0 #482
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '17' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: print Node version | |
run: node --version | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: print Java version | |
run: java -version | |
- name: setup AWS CDK | |
run: make setup | |
- name: print CDK version | |
run: cdk --version | |
- name: Build | |
run: mvn --no-transfer-progress -B clean package | |
- name: cdk synth | |
run: cdk synth |