Skip to content

Bump actions/checkout from 5.0.1 to 6.0.0 #580

Bump actions/checkout from 5.0.1 to 6.0.0

Bump actions/checkout from 5.0.1 to 6.0.0 #580

Workflow file for this run

name: Verify
permissions:
contents: read
pull-requests: write
on:
pull_request:
branches: [ main ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '17'
- name: Cache m2 repo
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
- name: Verify
run: ./mvnw verify -P integration -Dstyle.color=always