Update uvicorn[standard] requirement from ~=0.27.1 to ~=0.29.0 #40
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: Process Dependabot PRs | |
on: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
process-dependabot-prs: | |
permissions: | |
pull-requests: read | |
contents: write | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} | |
steps: | |
- name: Fetch Dependabot metadata | |
id: dependabot-metadata | |
uses: dependabot/[email protected] | |
- uses: actions/[email protected] | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Update Version Number in Other Files | |
uses: jacobtomlinson/gha-find-replace@v3 | |
with: | |
find: ${{ steps.dependabot-metadata.outputs.previous-version }} | |
replace: ${{ steps.dependabot-metadata.outputs.new-version }} | |
regex: false | |
- name: Commit & Push Changes to PR | |
uses: EndBug/[email protected] | |
with: | |
message: "Update version number in other files" | |
committer_name: GitHub Actions | |
committer_email: 41898282+github-actions[bot]@users.noreply.github.com |