Skip to content

Commit

Permalink
"update" "malicious" test-library
Browse files Browse the repository at this point in the history
  • Loading branch information
newhinton committed Apr 27, 2024
1 parent a5383a0 commit bb7b742
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ jobs:
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
GRADLE='build.gradle'
echo "should-run=false" >> $GITHUB_OUTPUT
for file in ${ALL_CHANGED_FILES}; do
[ "$file" == *"build.gradle" ] && echo "$file was changed" && echo "should-run=true" >> $GITHUB_OUTPUT
if [[ "$file" == *"GRADLE" ]]; then
echo "$file was changed"
echo "should-run=true" >> $GITHUB_OUTPUT
fi
done
echo "should-run=false" >> $GITHUB_OUTPUT
verify-dependencies:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -209,5 +209,5 @@ dependencies {
implementation 'com.github.Sharkaboi:AppUpdateChecker:v1.0.5'

// todo: remove
implementation("com.google.android.play:app-update-ktx:2.0.0")
implementation("com.google.android.play:app-update-ktx:2.1.0")
}

0 comments on commit bb7b742

Please sign in to comment.