fix(deps): update dependency org.apache.jackrabbit:jackrabbit-webdav to v2.22.0 #1938
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors | |
# SPDX-FileCopyrightText: 2017 Tobias Kaminsky <[email protected]> | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: Check | |
on: | |
pull_request: | |
branches: [ master, stable-* ] | |
push: | |
branches: [ master, stable-* ] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
task: [ detekt, spotlessKotlinCheck, lint ] | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Setup JVM options | |
run: | | |
mkdir -p "$HOME/.gradle" | |
echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > "$HOME/.gradle/gradle.properties" | |
- name: Check ${{ matrix.task }} | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: ${{ matrix.task }} | |
- uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: ${{ matrix.task }}-report | |
path: library/build/reports |