fix(gradle): prefer local gradlew for lockfile updates #4114
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: ARM64 Build | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| arm64-build: | |
| runs-on: ubuntu-24.04-arm | |
| if: github.event_name != 'schedule' || github.repository == 'dependabot/dependabot-core' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| submodules: recursive | |
| persist-credentials: false | |
| - name: Build bundler ecosystem image | |
| run: script/build bundler |