Skip to content

Commit 3c3c687

Browse files
cortinicofacebook-github-bot
authored andcommitted
Add Gradle Wrapper validation workflow (#44872)
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
1 parent 3303dd3 commit 3c3c687

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "Validate Gradle Wrapper"
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
validation:
9+
name: "Validation"
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: gradle/actions/wrapper-validation@v3

0 commit comments

Comments
 (0)