Skip to content

fix: upgrade com.amazonaws:aws-java-sdk-s3 from 1.12.745 to 1.12.748 #103

fix: upgrade com.amazonaws:aws-java-sdk-s3 from 1.12.745 to 1.12.748

fix: upgrade com.amazonaws:aws-java-sdk-s3 from 1.12.745 to 1.12.748 #103

Workflow file for this run

name: Checkstyle
on:
push:
branches:
- '*'
jobs:
checkstyle:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
- name: Run Checkstyle
run: mvn checkstyle:check
- name: Check Checkstyle results
run: |
if grep -q "ERROR" target/checkstyle-result.xml; then
echo "Checkstyle found errors."
exit 1
else
echo "Checkstyle passed."
fi