From 7bc12204fe62a5b998bfb9353937de89ff56bf7f Mon Sep 17 00:00:00 2001 From: Armin Burger Date: Sat, 13 Jan 2024 17:54:00 +0100 Subject: [PATCH] update action versions and remove upload of artifacts --- .github/workflows/codeql-analysis.yml | 6 +++--- .github/workflows/release.yml | 8 +------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8dcb172..81db7a5 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -32,7 +32,7 @@ jobs: ./gradlew --no-daemon clean - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: 'kotlin' @@ -43,7 +43,7 @@ jobs: echo $ENCODED_STRING | base64 --decode > app/keystore.jks - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 env: SIGNING_KEY_STORE_PATH: app/keystore.jks SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} @@ -51,4 +51,4 @@ jobs: SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c420103..02b27d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: uses: android-actions/setup-android@v3 - name: Cache Gradle and wrapper - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.gradle/caches @@ -45,12 +45,6 @@ jobs: SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} run: ./gradlew assembleRelease - - name: Upload Release Build to Artifacts - uses: actions/upload-artifact@v3.1.3 - with: - name: release-artifacts - path: app/build/outputs/apk/release/ - - name: Create Github Pre Release Release if: ${{ endsWith(github.ref_name, 'beta') }} uses: softprops/action-gh-release@v1