Skip to content

build(deps-dev): bump org.junit.jupiter:junit-jupiter from 5.10.3 to 5.11.0 #186

build(deps-dev): bump org.junit.jupiter:junit-jupiter from 5.10.3 to 5.11.0

build(deps-dev): bump org.junit.jupiter:junit-jupiter from 5.10.3 to 5.11.0 #186

Workflow file for this run

name: Build CI
on:
push:
branches: [ main, develop ]
tags: [ '[0-9]+.[0-9]+.[0-9]+' ]
pull_request:
branches: [ develop ]
types: [ opened, reopened, synchronize ]
workflow_dispatch:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test-project:
runs-on: ubuntu-22.04
timeout-minutes: 1
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Java
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2
with:
distribution: temurin
java-version: 17
cache: maven
- name: Executable Maven Wrapper
run: chmod +x ./mvnw
- name: Test project
run: ./mvnw integration-test
quality-check:
needs: test-project
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Java
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2
with:
distribution: temurin
java-version: 17
cache: maven
- name: Initialize CodeQL
uses: github/codeql-action/init@29d86d22a34ea372b1bbf3b2dced2e25ca6b3384 # v3.26.1
with:
languages: java
queries: security-and-quality
- name: Executable Maven Wrapper
run: chmod +x ./mvnw
- name: Compile project
run: ./mvnw compile
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@29d86d22a34ea372b1bbf3b2dced2e25ca6b3384 # v3.26.1