Update dependency androidx.lifecycle:lifecycle-viewmodel-ktx to v2.8.6 #11205
Workflow file for this run
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
# synced from @nextcloud/android-config | |
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors | |
# SPDX-FileCopyrightText: 2023 Tobias Kaminsky <[email protected]> | |
# SPDX-FileCopyrightText: 2023 Andy Scherzinger <[email protected]> | |
# SPDX-FileCopyrightText: 2023 Josh Richards <[email protected]> | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: "Analysis" | |
on: | |
pull_request: | |
branches: [ "master", "main", "stable-*" ] | |
push: | |
branches: [ "master", "main", "stable-*" ] | |
permissions: | |
pull-requests: write | |
contents: write | |
concurrency: | |
group: analysis-wrapper-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
analysis: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Setup variables | |
id: get-vars | |
run: | | |
if [ -z "$GITHUB_HEAD_REF" ]; then | |
# push | |
{ | |
echo "branch=$GITHUB_REF_NAME" | |
echo "pr=$GITHUB_RUN_ID" | |
echo "repo=${{ github.repository }}" | |
} >> "$GITHUB_OUTPUT" | |
else | |
# pull request | |
{ | |
echo "branch=$GITHUB_HEAD_REF" | |
echo "pr=${{ github.event.pull_request.number }}" | |
echo "repo=${{ github.event.pull_request.head.repo.full_name }}" | |
} >> "$GITHUB_OUTPUT" | |
fi | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
repository: ${{ steps.get-vars.outputs.repo }} | |
ref: ${{ steps.get-vars.outputs.branch }} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install defusedxml | |
- name: Run analysis wrapper | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
mkdir -p "$HOME/.gradle" | |
echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > "$HOME/.gradle/gradle.properties" | |
scripts/analysis/analysis-wrapper.sh ${{ steps.get-vars.outputs.branch }} ${{ secrets.LOG_USERNAME }} ${{ secrets.LOG_PASSWORD }} "$GITHUB_RUN_NUMBER" ${{ steps.get-vars.outputs.pr }} |