Skip to content

Bump actions/checkout from 5 to 6 #44

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #44

Workflow file for this run

---
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
JAVA_VERSION: 17
JAVA_DISTRIBUTION: temurin
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-tags: true
fetch-depth: 0
- name: Set up Java ${{ env.JAVA_VERSION }}
uses: actions/setup-java@v5
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRIBUTION }}
cache: maven
- name: Build and test project
run: mvn --batch-mode --update-snapshots --file pom.xml verify
submit-dependencies:
name: Dependency Snapshot
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
with:
fetch-tags: true
fetch-depth: 0
- uses: advanced-security/maven-dependency-submission-action@v5