mirror of
https://github.com/AChep/keyguard-app.git
synced 2025-01-23 10:59:58 +01:00
5dfe2278b6
Bumps [gradle/actions](https://github.com/gradle/actions) from 3 to 4. - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/v3...v4) --- updated-dependencies: - dependency-name: gradle/actions dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 lines
482 B
YAML
26 lines
482 B
YAML
name: "✔️ Check Gradle wrapper"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'gradlew*'
|
|
- 'gradle/wrapper/**'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'gradlew*'
|
|
- 'gradle/wrapper/**'
|
|
|
|
jobs:
|
|
check-gradle-wrapper:
|
|
name: Check Gradle wrapper
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Check Gradle wrapper"
|
|
uses: gradle/actions/wrapper-validation@v4
|