mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3c3c687bf7
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/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
14 lines
228 B
YAML
14 lines
228 B
YAML
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
|