mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
Add wrapper-validation workflow
Although we run `setup-gradle` with all/most wrapper files, this global workflow will ensure that all wrapper files in the repo are valid. (This should help with the OSSF scorecard)
This commit is contained in:
parent
d8b3a9fb11
commit
af45dcfe3c
1 changed files with 14 additions and 0 deletions
14
.github/workflows/ci-validate-wrappers.yml
vendored
Normal file
14
.github/workflows/ci-validate-wrappers.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
name: CI-validate-wrappers
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
validation:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: gradle/actions/wrapper-validation@v4
|
||||||
|
with:
|
||||||
|
allow-checksums: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
Loading…
Reference in a new issue