Update known checksums #30
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 known checksums" | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Update known checksums | |
id: update-known-checksums | |
run: | |
node dist/update-known-checksums/index.js | |
src/download/checksum/known-checksums.ts ${{ secrets.GITHUB_TOKEN }} | |
- run: npm install && npm run all | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 | |
with: | |
commit-message: "chore: update known checksums" | |
title: | |
"chore: update known checksums for ${{ | |
steps.update-known-checksums.outputs.latest-version }}" | |
body: | |
"chore: update known checksums for ${{ | |
steps.update-known-checksums.outputs.latest-version }}" | |
base: main | |
labels: "automated-pr,update-known-checksums" | |
branch: update-known-checksums-pr | |
delete-branch: true |