Update ghasum checksums #100
Workflow file for this run
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: ghasum | |
on: | |
push: | |
branches: | |
- dependabot/github_actions/** | |
permissions: read-all | |
jobs: | |
update: | |
name: Update gha.sum | |
runs-on: ubuntu-22.04 | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
permissions: | |
contents: write # To push a commit | |
steps: | |
- name: Create automation token | |
uses: tibdex/[email protected] | |
id: automation-token | |
with: | |
app_id: ${{ secrets.AUTOMATION_APP_ID }} | |
private_key: ${{ secrets.AUTOMATION_APP_KEY }} | |
- name: Checkout repository | |
uses: actions/[email protected] | |
with: | |
token: ${{ steps.automation-token.outputs.token }} | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version-file: go.mod | |
# NOTE: skip "Verify action checksums" because they might not be up-to-date | |
- name: Update gha.sum | |
run: go run ./cmd/ghasum update -force | |
- name: Commit gha.sum | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Update ghasum checksums | |
file_pattern: .github/workflows/gha.sum |