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