Skip to content

Bump actions/checkout from 3.6.0 to 4.2.2 #148

Bump actions/checkout from 3.6.0 to 4.2.2

Bump actions/checkout from 3.6.0 to 4.2.2 #148

Workflow file for this run

# This workflow will build a Java project with Gradle
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@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up JDK
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
java-version: 17
distribution: temurin
- name: Build with Gradle
run: ./gradlew assemble check