From af0d0be5a70170a2978d7e066e185d5e10116f0c Mon Sep 17 00:00:00 2001 From: arkon Date: Sun, 15 May 2022 12:11:30 -0400 Subject: [PATCH] Update build workflows --- renovate.json => .github/renovate.json | 0 .github/workflows/build_app.yml | 7 ++++--- 2 files changed, 4 insertions(+), 3 deletions(-) rename renovate.json => .github/renovate.json (100%) diff --git a/renovate.json b/.github/renovate.json similarity index 100% rename from renovate.json rename to .github/renovate.json diff --git a/.github/workflows/build_app.yml b/.github/workflows/build_app.yml index aee0716..cf8adeb 100644 --- a/.github/workflows/build_app.yml +++ b/.github/workflows/build_app.yml @@ -19,13 +19,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone Repository (Latest) - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: 'tachiyomiorg/tachiyomi' fetch-depth: 0 if: github.event.inputs.git-ref == '' - name: Clone Repository (Custom Ref) - uses: actions/checkout@v2 + uses: actions/checkout@v3 if: github.event.inputs.git-ref != '' with: repository: 'tachiyomiorg/tachiyomi' @@ -33,9 +33,10 @@ jobs: ref: ${{ github.event.inputs.git-ref }} - name: Set up JDK - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: java-version: 11 + distribution: adopt - name: Get previous release id: last_release