build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 #178
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: Fix dependabot imports | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
run-custom-command: | |
if: ${{ github.actor_id == '49699333' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
submodules: true | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22" | |
check-latest: true | |
- name: Bump Go mod | |
run: ./bumperate.sh | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Bump Go mod SRI | |
commit_user_name: Mimi | |
commit_user_email: [email protected] | |
commit_author: Mimi <[email protected]> | |
- name: Enable Pull Request Automerge | |
run: gh pr merge --squash --auto ${{ github.event.number }} | |
env: | |
GH_TOKEN: ${{ github.token }} |