ci(GitHub): Bump step-security/harden-runner from 0c6ab70129fa3660acd9cd2b51e8685d619cd613 to 29e9ae12297382bde04e940b27e0638029f9f3cd #127
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Validate Gradle Wrapper" | |
on: | |
pull_request: | |
paths: | |
- '**/gradle-wrapper-validation.yml' | |
- '**/gradle/wrapper/' | |
- '**/gradle-wrapper.jar' | |
- '**/gradle*.properties' | |
- '**/gradlew*' | |
push: | |
paths: | |
- '**/gradle-wrapper-validation.yml' | |
- '**/gradle/wrapper/' | |
- '**/gradle-wrapper.jar' | |
- '**/gradle*.properties' | |
- '**/gradlew*' | |
permissions: | |
contents: read | |
jobs: | |
validation: | |
name: "Validate Gradle Wrapper" | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@29e9ae12297382bde04e940b27e0638029f9f3cd | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
downloads.gradle-dn.com:443 | |
github.com:443 | |
services.gradle.org:443 | |
downloads.gradle.org:443 | |
- uses: actions/checkout@v4 | |
- uses: gradle/wrapper-validation-action@v1 |