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