Skip to content

Commit

Permalink
Added gradle wrapper validation github action
Browse files Browse the repository at this point in the history
  • Loading branch information
chRyNaN committed Jan 16, 2024
1 parent 6e02397 commit e6c4c40
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/gradle_wrapper_validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Validates that Gradle Wrapper changes do not contain malicious code injected.
# See the following for more details: https://github.com/marketplace/actions/gradle-wrapper-validation

name: "Validate Gradle Wrapper"
on: [ push, pull_request ]

jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1

0 comments on commit e6c4c40

Please sign in to comment.