2022-12-14 16:49:56 +03:00
|
|
|
# synced from @nextcloud/android-config
|
2024-02-29 22:23:51 +03:00
|
|
|
|
|
|
|
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
# SPDX-FileCopyrightText: 2023-2024 Andy Scherzinger <info@andy-scherzinger.de>
|
|
|
|
# SPDX-FileCopyrightText: 2022 Tobias Kaminsky <tobias@kaminsky.me>
|
|
|
|
# SPDX-FileCopyrightText: 2022 Álvaro Brey <alvaro@alvarobrey.com>
|
2024-03-30 05:15:29 +03:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2024-02-29 22:23:51 +03:00
|
|
|
|
2022-06-13 13:03:55 +03:00
|
|
|
name: "CodeQL"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-07-21 14:57:11 +03:00
|
|
|
branches: [ "master", "main", "stable-*" ]
|
2022-06-13 13:03:55 +03:00
|
|
|
pull_request:
|
2022-07-21 14:57:11 +03:00
|
|
|
branches: [ "master", "main" ]
|
2022-06-13 13:03:55 +03:00
|
|
|
schedule:
|
|
|
|
- cron: '24 18 * * 3'
|
|
|
|
|
2022-07-01 10:06:35 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-06-13 13:03:55 +03:00
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
2024-10-07 10:42:01 +03:00
|
|
|
runs-on: ubuntu-24.04
|
2022-06-13 13:03:55 +03:00
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-12-16 11:57:01 +03:00
|
|
|
language: [ 'java' ]
|
2022-06-13 13:03:55 +03:00
|
|
|
steps:
|
2022-12-16 11:57:01 +03:00
|
|
|
- name: Checkout repository
|
2024-10-08 01:18:07 +03:00
|
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
2022-12-16 11:57:01 +03:00
|
|
|
- name: Set Swap Space
|
|
|
|
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c # v1.0
|
|
|
|
with:
|
2022-12-14 16:49:56 +03:00
|
|
|
swap-size-gb: 10
|
2022-12-16 11:57:01 +03:00
|
|
|
- name: Initialize CodeQL
|
2024-10-22 19:45:33 +03:00
|
|
|
uses: github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
|
2022-12-16 11:57:01 +03:00
|
|
|
with:
|
|
|
|
languages: ${{ matrix.language }}
|
2024-10-07 19:31:07 +03:00
|
|
|
- name: Set up JDK 17
|
2024-09-25 08:23:49 +03:00
|
|
|
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0
|
2022-12-16 11:57:01 +03:00
|
|
|
with:
|
|
|
|
distribution: "temurin"
|
2024-10-07 19:31:07 +03:00
|
|
|
java-version: 17
|
2022-12-16 11:57:01 +03:00
|
|
|
- name: Assemble
|
|
|
|
run: |
|
|
|
|
mkdir -p "$HOME/.gradle"
|
2024-03-17 19:57:03 +03:00
|
|
|
echo "org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > "$HOME/.gradle/gradle.properties"
|
2024-01-22 21:36:01 +03:00
|
|
|
./gradlew assembleDebug
|
2022-12-16 11:57:01 +03:00
|
|
|
- name: Perform CodeQL Analysis
|
2024-10-22 19:45:33 +03:00
|
|
|
uses: github/codeql-action/analyze@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
|