Skip to content

Commit

Permalink
Add Gradle Wrapper validation workflow (#44872)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #44872

This is just a security measure against wrapper tampering attacks.
See more on this here: https://github.com/gradle/actions/blob/main/docs/wrapper-validation.md

Changelog:
[Internal] [Changed] - Add Gradle Wrapper validation workflow

Reviewed By: cipolleschi

Differential Revision: D58408099

fbshipit-source-id: 9768b924aa051128e4adc83f862536fb87238e65
  • Loading branch information
cortinico authored and facebook-github-bot committed Jun 11, 2024
1 parent 3303dd3 commit 3c3c687
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 @@
name: "Validate Gradle Wrapper"

on:
push:
pull_request:

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

0 comments on commit 3c3c687

Please sign in to comment.