Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Switch to java 17 for Sonarscan #2213

Merged
merged 1 commit into from
Jan 23, 2024
Merged
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
13 changes: 5 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,6 @@ jobs:
run: |
npm ci
npm run test
- name: SonarQube Scan
if: github.ref == 'refs/heads/development'
uses: kitabisa/sonarqube-action@v1.2.0
with:
projectBaseDir: ${{ github.workspace }}
projectKey: "eclipse-che4z_che-che4z-lsp-for-cobol"
host: https://sonarcloud.io
login: ${{ secrets.SONAR_TOKEN }}
- name: Package IDMS vsix
working-directory: clients/idms-dialect-support
run: |
Expand All @@ -159,6 +151,11 @@ jobs:
if-no-files-found: warn
name: vsix-daco-dialect
path: 'cobol-language-support-for-daco*.vsix'
- name: SonarCloud Scan
if: github.ref == 'refs/heads/development'
uses: sonarsource/sonarcloud-github-action@49e6cd3b187936a73b8280d59ffd9da69df63ec9
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

buildNative:
strategy:
Expand Down
Loading