From f272809c2abc460bef3d7dc2f4a75b875593b366 Mon Sep 17 00:00:00 2001 From: mo-auto <54212639+mo-auto@users.noreply.github.com> Date: Thu, 13 Jan 2022 10:29:20 +0000 Subject: [PATCH] ci(workflows): sync central workflows Signed-off-by: mo-auto <54212639+mo-auto@users.noreply.github.com> --- .github/workflows/central_code_quality_check.yml | 12 ------------ .github/workflows/commit-check.yml | 3 +-- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/central_code_quality_check.yml b/.github/workflows/central_code_quality_check.yml index 3c8ca4c..2ae9d02 100644 --- a/.github/workflows/central_code_quality_check.yml +++ b/.github/workflows/central_code_quality_check.yml @@ -34,14 +34,8 @@ jobs: env: JVM_PROJECTS: | JanssenProject/jans-auth-server - JanssenProject/jans-orm JanssenProject/jans-config-api - JanssenProject/jans-client-api - JanssenProject/jans-scim JanssenProject/jans-core - JanssenProject/jans-notify - JanssenProject/jans-fido2 - JanssenProject/jans-eleven NON_JVM_PROJECTS: | JanssenProject/jans-setup JanssenProject/jans-cli @@ -78,12 +72,6 @@ jobs: case "$GITHUB_REPOSITORY" in "JanssenProject/jans-auth-server") ;& - "JanssenProject/jans-client-api") - ;& - "JanssenProject/jans-scim") - ;& - "JanssenProject/jans-eleven") - ;& "JanssenProject/jans-config-api") echo "Run Sonar analysis without test execution" mvn -B -DskipTests=true install org.sonarsource.scanner.maven:sonar-maven-plugin:sonar diff --git a/.github/workflows/commit-check.yml b/.github/workflows/commit-check.yml index a84897d..16e4892 100644 --- a/.github/workflows/commit-check.yml +++ b/.github/workflows/commit-check.yml @@ -48,13 +48,12 @@ jobs: # We need to fetch with a depth of 2 for pull_request so we can do HEAD^2 fetch-depth: 2 - - uses: actions/setup-node@v2.5.0 + - uses: actions/setup-node@v2.5.1 with: node-version: 14 - run: | npm install --save-dev @commitlint/{config-conventional,cli} echo "module.exports = {extends: ['@commitlint/config-conventional']};" > commitlint.config.js - # If this workflow was triggered by a push then resolve the commit message from HEAD - name: "[Push] Check Commit Standard" if: github.event_name == 'push' || github.event_name == 'pull_request_target'