mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
### Description Replace gradle/wrapper-validation-action with gradle/actions/wrapper-validation-action ### Motivation and Context This is recommended by https://github.com/gradle/wrapper-validation-action. This job uses deprecated functionality from the 'gradle/wrapper-validation-action' action.
14 lines
416 B
YAML
14 lines
416 B
YAML
# Check gradle-wrapper.jar checksums against official Gradle releases.
|
|
# See: https://github.com/marketplace/actions/gradle-wrapper-validation
|
|
# This workflow was copied from the link above.
|
|
|
|
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@v4
|