fix(deps): update aws-java-sdk-v2 monorepo to v2.46.5 #728
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 | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/software-installed-on-github-hosted-runners | |
| # GitHub Actions does not support Docker, PostgreSQL server on Windows, macOS :( | |
| jobs: | |
| ubuntu-latest: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: 50 | |
| - name: 'Set up Java' | |
| uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0 | |
| with: | |
| java-version: | | |
| 17 | |
| 21 | |
| distribution: 'zulu' | |
| - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 | |
| name: Cache ./gradle/caches/ | |
| with: | |
| path: | | |
| ~/.gradle/caches/ | |
| key: gradle-${{ runner.os }}-caches-${{ hashFiles('build.properties', '**/*.gradle.kts', 'gradle/wrapper/gradle-wrapper.properties') }} | |
| - name: Test with Java 17 | |
| uses: eskatos/gradle-command-action@v3 | |
| with: | |
| gradle-version: wrapper | |
| arguments: --no-parallel --no-daemon -PtestJdk=17 build | |
| - name: Test with Java 21 | |
| uses: eskatos/gradle-command-action@v3 | |
| with: | |
| gradle-version: wrapper | |
| arguments: --no-parallel --no-daemon -PtestJdk=21 build |