chore(deps): update kotlin monorepo to v2.1.10 #986
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
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors | |
# SPDX-FileCopyrightText: 2023 Andy Scherzinger <[email protected]> | |
# SPDX-FileCopyrightText: 2022 Tobias Kaminsky <[email protected]> | |
# SPDX-FileCopyrightText: 2022 Álvaro Brey <[email protected]> | |
# SPDX-License-Identifier: MIT | |
name: Assemble | |
on: | |
pull_request: | |
branches: [ main, stable-* ] | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
assemble: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@0bdd871935719febd78681f197cd39af5b6e16a6 # v4.2.2 | |
- name: Assemble | |
run: ./gradlew assembleDebug |