Skip to content

Bump actions/checkout from 7.0.0 to 7.0.1 in the github-actions group #352

Bump actions/checkout from 7.0.0 to 7.0.1 in the github-actions group

Bump actions/checkout from 7.0.0 to 7.0.1 in the github-actions group #352

Workflow file for this run

name: Testing For PRs
on: [ pull_request ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up JDK
uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0
with:
java-version: 21
distribution: temurin
cache: gradle
- name: Build with Gradle
run: ./gradlew assemble check