2022-12-14 16:50:00 +03:00
|
|
|
# synced from @nextcloud/android-config
|
2024-02-29 22:23:57 +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>
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-06-09 11:47:55 +03:00
|
|
|
name: "CodeQL"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-07-21 14:57:15 +03:00
|
|
|
branches: [ "master", "main", "stable-*" ]
|
2022-06-09 11:47:55 +03:00
|
|
|
pull_request:
|
2022-07-21 14:57:15 +03:00
|
|
|
branches: [ "master", "main" ]
|
2022-06-09 11:47:55 +03:00
|
|
|
schedule:
|
|
|
|
- cron: '24 18 * * 3'
|
|
|
|
|
2022-07-01 10:06:42 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-06-09 11:47:55 +03:00
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
2023-06-14 12:24:36 +03:00
|
|
|
runs-on: ubuntu-22.04
|
2022-06-09 11:47:55 +03:00
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-12-16 12:37:19 +03:00
|
|
|
language: [ 'java' ]
|
2022-06-09 11:47:55 +03:00
|
|
|
steps:
|
2022-12-16 12:37:19 +03:00
|
|
|
- name: Checkout repository
|
2024-09-25 22:25:31 +03:00
|
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
2022-12-16 12:37:19 +03:00
|
|
|
- name: Set Swap Space
|
|
|
|
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c # v1.0
|
|
|
|
with:
|
2022-12-14 16:50:00 +03:00
|
|
|
swap-size-gb: 10
|
2022-12-16 12:37:19 +03:00
|
|
|
- name: Initialize CodeQL
|
2024-09-24 23:07:01 +03:00
|
|
|
uses: github/codeql-action/init@461ef6c76dfe95d5c364de2f431ddbd31a417628 # v3.26.9
|
2022-12-16 12:37:19 +03:00
|
|
|
with:
|
|
|
|
languages: ${{ matrix.language }}
|
2023-06-07 05:51:01 +03:00
|
|
|
- name: Set up JDK 17
|
2024-09-24 17:19:56 +03:00
|
|
|
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0
|
2022-12-16 12:37:19 +03:00
|
|
|
with:
|
|
|
|
distribution: "temurin"
|
2023-04-14 20:20:30 +03:00
|
|
|
java-version: 17
|
2022-12-16 12:37:19 +03:00
|
|
|
- name: Assemble
|
|
|
|
run: |
|
|
|
|
mkdir -p "$HOME/.gradle"
|
2024-03-17 17:25:43 +03:00
|
|
|
echo "org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > "$HOME/.gradle/gradle.properties"
|
2024-01-22 21:36:07 +03:00
|
|
|
./gradlew assembleDebug
|
2022-12-16 12:37:19 +03:00
|
|
|
- name: Perform CodeQL Analysis
|
2024-09-24 23:07:01 +03:00
|
|
|
uses: github/codeql-action/analyze@461ef6c76dfe95d5c364de2f431ddbd31a417628 # v3.26.9
|