chore(deps-dev): bump software.amazon.awssdk:sqs from 2.20.72 to 2.29.6 #138
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: build-verify-package | |
on: | |
push: | |
paths-ignore: | |
- '.github/**' | |
- '.gitignore' | |
- 'LICENSE' | |
- '*.md' | |
pull_request: | |
paths-ignore: | |
- '.github/**' | |
- '.gitignore' | |
- 'LICENSE' | |
- '*.md' | |
permissions: read-all | |
jobs: | |
build-verify-package: | |
runs-on: ubuntu-latest-4-cores | |
environment: Build | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 8 for x64 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
architecture: x64 | |
cache: maven | |
- name: Build Java components | |
run: mvn -B clean package | |
- name: Verify Javadoc completion | |
run: mvn -B javadoc:javadoc |