Bump jstree from 3.3.16 to 3.3.17 in /app #1653
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify Codebase | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
verify: | |
name: Verify Codebase | |
runs-on: ubuntu-latest | |
env: | |
MVN: ./mvnw --show-version --batch-mode | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
id: init-codeql | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: java | |
- name: Set up JDK | |
id: setup-jdk | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: maven | |
- name: Verify | |
id: verify | |
run: $MVN -P skip-gwt verify | |
- name: Perform CodeQL Analysis | |
id: perform-codeql | |
uses: github/codeql-action/analyze@v3 |