Bump gradle/wrapper-validation-action from 2 to 3 #177
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
# This workflow will check the validity of the Gradle wrapper in your repository. | |
name: "Validate Gradle Wrapper" | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the main branch. | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
validation: | |
name: "Validation" | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# 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@v4 | |
# Runs an action from the Gradle org to validate the Gradle wrapper, see | |
# https://github.com/gradle/wrapper-validation-action?tab=readme-ov-file#the-gradle-wrapper-problem-in-open-source | |
# for more details as to why this is important. | |
- uses: gradle/wrapper-validation-action@v3 |