Update Gradle Wrapper from 8.10 to 8.10.1 #397
Workflow file for this run
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: CI | |
on: [ pull_request ] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
permissions: | |
# creates a new check with unit test results | |
checks: write | |
# needs to git diff the repo | |
contents: read | |
# find the pr for this commit | |
issues: read | |
# write artifacts and comment on pr related to this | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: 17 | |
cache: 'gradle' | |
- name: clean build | |
run: ./gradlew clean build --no-daemon --info --stacktrace | |
- name: Upload Test Results | |
# see ci-test.check.yml for workflow that publishes test results without security issues for forks | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: check-ci-results | |
path: '**/build/test-results/test/TEST-*.xml' |