chore(deps): update actions/github-script digest to f28e40c - autoclosed #471
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@v5 | |
| with: | |
| fetch-depth: 50 | |
| - name: 'Set up Java' | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: | | |
| 17 | |
| 21 | |
| distribution: 'zulu' | |
| - uses: actions/cache@v4 | |
| 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 |