Bumping #1232
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
# Credit to https://github.com/dawidd6/homebrew-tap | |
name: Bumping | |
on: | |
schedule: | |
# Every day at 6am | |
- cron: '0 6 * * *' | |
workflow_dispatch: | |
jobs: | |
bump: | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Install pipgrip | |
run: | | |
brew update | |
brew install --build-from-source pipgrip | |
- name: Bump formulae | |
uses: dawidd6/action-homebrew-bump-formula@v3 | |
with: | |
token: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}} | |
tap: ${{github.repository}} | |
livecheck: true |