Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
name: 'CodeQL'
defaults:
run:
working-directory: ./client
on:
schedule:
- cron: "19 3 * * 5"
- cron: '19 3 * * 5'

jobs:
analyze:
Expand All @@ -29,20 +29,19 @@ jobs:
strategy:
fail-fast: false
matrix:
language: ["java", "javascript"]
language: ['java', 'javascript']
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
with:
distribution: 'temurin'
java-version: 17

java-version: 21

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand All @@ -55,13 +54,13 @@ jobs:
# queries: ./path/to/local/query, your-org/your-repo/queries@main

- name: Build with Maven
run: mvn -B -Pm2 clean verify --file pom.xml
run: mvn -B clean verify --file pom.xml
working-directory: server

- name: Build Client with yarn
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: "20"
node-version: '22'
- run: yarn install

# ℹ️ Command-line programs to run using the OS shell.
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pipeline {
YARN_CACHE_FOLDER = "${env.WORKSPACE}/yarn-cache"
SPAWN_WRAP_SHIM_ROOT = "${env.WORKSPACE}"
EMAIL_TO= "glsp-build@eclipse.org"
MAVEN_VERSION = "3.9.12"
MAVEN_VERSION = "3.9.14"

}

Expand Down