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