Update Modrinth Dependencies #15
This file contains hidden or 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 Modrinth Dependencies | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| # Needed to edit gradle.properties on the PR branches | |
| contents: write | |
| jobs: | |
| update-deps: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| branch: ['master', '26.1'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ matrix.branch }} | |
| - name: Update Modrinth Dependencies | |
| uses: Wurst-Imperium/update-modrinth-deps@v1 | |
| with: | |
| token: ${{ secrets.UMD_PR_TOKEN }} |