Skip to content

Commit

Permalink
Merge pull request #44 from techmaved/dependency/actions
Browse files Browse the repository at this point in the history
update action versions and remove upload of artifacts
  • Loading branch information
techmaved authored Jan 13, 2024
2 parents 2e9ba8a + 7bc1220 commit d92d782
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand All @@ -43,12 +43,12 @@ 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 }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
8 changes: 1 addition & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -45,12 +45,6 @@ jobs:
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
run: ./gradlew assembleRelease

- name: Upload Release Build to Artifacts
uses: actions/[email protected]
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
Expand Down

0 comments on commit d92d782

Please sign in to comment.