Bump com.amazonaws:aws-java-sdk-dynamodb from 1.12.772 to 1.12.783 in /modules/dynalite #12234
Workflow file for this run
This file contains hidden or 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-Docker-Rootless | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - '.github/ISSUE_TEMPLATE/*.yaml' | |
| - '.github/CODEOWNERS' | |
| - '.github/pull_request_template.md' | |
| - 'docs/**/*.css' | |
| - 'docs/**/*.html' | |
| - 'docs/**/*.ico' | |
| - 'docs/**/*.md' | |
| - 'docs/**/*.png' | |
| - 'docs/**/*.svg' | |
| - 'mkdocs.yml' | |
| - 'README.md' | |
| - 'RELEASING.md' | |
| - '.sdkmanrc' | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '.github/ISSUE_TEMPLATE/*.yaml' | |
| - '.github/CODEOWNERS' | |
| - '.github/pull_request_template.md' | |
| - 'docs/**/*.css' | |
| - 'docs/**/*.html' | |
| - 'docs/**/*.ico' | |
| - 'docs/**/*.md' | |
| - 'docs/**/*.png' | |
| - 'docs/**/*.svg' | |
| - 'mkdocs.yml' | |
| - 'README.md' | |
| - 'RELEASING.md' | |
| - '.sdkmanrc' | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.head_ref || github.sha }}" | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| checks: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup rootless Docker | |
| uses: docker/setup-docker-action@v4 | |
| with: | |
| rootless: true | |
| - name: Setup Gradle Build Action | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Build with Gradle | |
| run: ./gradlew --no-daemon --scan testcontainers:test --tests '*GenericContainerRuleTest' | |
| - uses: ./.github/actions/setup-junit-report |