Update dependencies #52
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
name: Update dependencies | |
on: | |
workflow_dispatch: | |
schedule: | |
# min hour month_day month week_day | |
- cron: '0 0 18 * *' | |
jobs: | |
update_dependencies: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Configure git | |
run: | | |
git config user.name dklimchuk | |
git config user.email [email protected] | |
- name: Update dependencies | |
run: ./gradlew :upgradeDependencies | |