Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

fix(deps): update dependency com.diffplug.spotless:spotless-plugin-gradle to v6.19.0 #445

fix(deps): update dependency com.diffplug.spotless:spotless-plugin-gradle to v6.19.0

fix(deps): update dependency com.diffplug.spotless:spotless-plugin-gradle to v6.19.0 #445

Workflow file for this run

# 🐻‍❄️🌂 analytics-jvm: Client and server implementation of Noelware Analytics in Java, supported for both Java and Kotlin
# Copyright (c) 2022 Noelware <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
name: Code Quality
on:
workflow_dispatch:
push:
branches:
- 'issue/gh-**'
- 'feat/**'
- master
paths-ignore:
- '.github/**'
- '.vscode/**'
- 'assets/**'
- 'locales/**'
- 'docker/**'
- '.dockerignore'
- '.eslintignore'
- '.gitignore'
- '**.md'
- 'LICENSE'
- 'renovate.json'
pull_request:
branches:
- 'issue/gh-**'
- 'feat/**'
- master
paths-ignore:
- '.github/**'
- '.vscode/**'
- 'assets/**'
- 'locales/**'
- 'docker/**'
- '.dockerignore'
- '.eslintignore'
- '.gitignore'
- '**.md'
- 'LICENSE'
- 'renovate.json'
schedule:
- cron: '21 2 * * 4'
jobs:
codeql:
name: Analyze
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read
actions: read
strategy:
fail-fast: false
matrix:
java-version: [17, 19]
languages: [java]
#languages: [java,kotlin]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Java ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
distribution: temurin
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.languages }}
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
# qodana-jvm:
# name: Qodana JVM
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v3
# with:
# fetch-depth: 0
#
# - name: Qodana Scan
# uses: JetBrains/[email protected]
# with:
# args: --baseline,qodana.sarif.json,--property,org.noelware.charted.ignoreJavaCheck=true,--save-report
#
# - name: Upload SARIF Results to GitHub
# uses: github/codeql-action/upload-sarif@v2
# with:
# sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json