Update Deps #750
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 Deps | |
on: | |
# allow manual triggers | |
workflow_dispatch: {} | |
# run every day at 10am | |
schedule: | |
- cron: "0 10 * * *" | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Get Token | |
id: get_token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.THM_AUTOMATION_APP_ID }} | |
private_key: ${{ secrets.THM_AUTOMATION_PRIVATE_KEY }} | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ steps.get_token.outputs.token }} | |
- uses: ./.github/custom-actions/setup-gradle | |
- uses: markelliot/update-gradle-deps@v1 | |
with: | |
push-to-repo-token: ${{ steps.get_token.outputs.token }} | |
primary-branch: main | |
commit-user: thm-automation[bot] | |
commit-email: thm-automation[bot]@users.noreply.github.com | |
label: automerge |