build: upgrade gradle wrapper to 9.4.0 in oss-licenses-plugin #297
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
| # Perform a Gradle `build` which includes `assemble`, `check`, `test` of the projects. | |
| name: CI | |
| # Controls when the action will run. | |
| on: | |
| # Triggers the workflow on push or pull request events | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| # Check the integrity of the Gradle Wrapper executables and lint workflows | |
| lint-and-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Validate Gradle Wrapper | |
| uses: gradle/actions/wrapper-validation@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 | |
| - name: Lint GitHub Actions | |
| uses: abcxyz/actions/.github/actions/lint-github-actions@e32ec3bd6af6d87d79fe7c441f435eb7ad11d527 # main | |
| - name: Ratchet Check | |
| uses: sethvargo/ratchet@8b4ca256dbed184350608a3023620f267f0a5253 # main | |
| with: | |
| files: .github/workflows/*.yml | |
| # This workflow contains a single job called "build" | |
| build: | |
| needs: lint-and-check | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| # Runs this job in parallel for each sub-project | |
| strategy: | |
| matrix: | |
| project-dir: | |
| - strict-version-matcher-plugin | |
| - google-services-plugin | |
| - oss-licenses-plugin | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 | |
| with: | |
| dependency-graph: generate-and-submit | |
| # Runs a build which includes `check` and `test` tasks | |
| - name: Perform a Gradle build | |
| run: ./gradlew build | |
| working-directory: ./${{ matrix.project-dir }} |