This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
build(deps): bump requests from 2.31.0 to 2.32.2 #437
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
pre-commit: | |
uses: divkix/reusable-workflows/.github/workflows/pre-commit.yml@main | |
automerge-dependabot-pr: | |
needs: pre-commit | |
uses: divkix/reusable-workflows/.github/workflows/automerge-dependabot-pr.yml@main | |
heroku-push: | |
# do not run if it is a pr | |
if: github.event_name != 'pull_request' | |
runs-on: ubuntu-latest | |
needs: pre-commit | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
curl https://cli-assets.heroku.com/install.sh | sh | |
- uses: akhileshns/[email protected] # This is the action | |
with: | |
heroku_api_key: ${{ secrets.HEROKU_API_KEY }} | |
heroku_app_name: ${{ secrets.HEROKU_APP_NAME }} | |
heroku_email: ${{ secrets.HEROKU_EMAIL }} | |
usedocker: true | |
dontuseforce: 1 |