ci(GitHub): Bump step-security/harden-runner from 0c6ab70129fa3660acd9cd2b51e8685d619cd613 to f4f3f445f343c08c93d7771433e8dee4267e05b9 #121
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@f4f3f445f343c08c93d7771433e8dee4267e05b9 | |
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 |