Update Deno Dependencies #2
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 Deno Dependencies | |
on: | |
schedule: | |
# Run every Saturday at 10:00 JST. | |
- cron: "0 1 * * 6" | |
# For debug | |
workflow_dispatch: | |
jobs: | |
udd: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate token | |
id: generate_token | |
uses: getsentry/action-github-app-token@v3 | |
with: | |
app_id: ${{ secrets.KG8M_BOT_APP_ID }} | |
private_key: ${{ secrets.KG8M_BOT_PRIVATE_KEY }} | |
- uses: hasundue/molt-action@v1 | |
with: | |
# Use my GitHub app’s temporary token because the default `GITHUB_TOKEN` prevents other workflows from being | |
# triggered on a pull request creation. | |
# cf. https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow | |
token: ${{ steps.generate_token.outputs.token }} |