fix(deps): update all non-major dependencies #279
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: Test | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| reason: | |
| description: 'Reason for manual run' | |
| required: false | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| gradle: | |
| runs-on: | |
| group: ubuntu-x86-runners | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Run shellcheck | |
| uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # v2.0.0 | |
| with: | |
| scandir: './git-hooks' | |
| - name: Setup java | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - name: Validate Gradle Wrapper | |
| uses: gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5 | |
| - name: Execute buildHealth for build-logic | |
| run: './gradlew -p build-logic buildHealth -s' | |
| - name: Execute check | |
| run: './gradlew check -s' | |
| - name: Execute buildHealth for main project | |
| run: './gradlew buildHealth -s' | |
| # Gradle caches can exceed 45GB, potentially causing "No space left on device" errors. | |
| # Clean up caches to free disk space. | |
| - name: Clean up Gradle caches | |
| if: always() | |
| run: | | |
| echo "Disk space before cleanup:" | |
| df -h | |
| echo "Gradle cache size before cleanup:" | |
| du -sh ~/.gradle/caches || true | |
| echo "Cleaning up Gradle caches..." | |
| rm -rf ~/.gradle/caches | |
| echo "Disk space after cleanup:" | |
| df -h |