Update Homebrew #3
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: Update Homebrew | |
on: | |
schedule: | |
# weekdays at 00:00 | |
- cron: '0 0 * * 1-5' | |
workflow_dispatch: | |
jobs: | |
update_homebrew: | |
name: Update Insomnia Formula | |
# must be macos, linux-brew doesn't have casks | |
runs-on: macos-latest | |
steps: | |
- name: Set up Homebrew | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
with: | |
test-bot: false | |
- name: Cache Homebrew Bundler RubyGems | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.set-up-homebrew.outputs.gems-path }} | |
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} | |
restore-keys: ${{ runner.os }}-rubygems- | |
- name: Install Homebrew Bundler RubyGems | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: brew install-bundler-gems | |
- name: Add "Versions" Tap | |
run: brew tap homebrew/homebrew-cask-versions | |
- name: Configure Git user | |
uses: Homebrew/actions/git-user-config@master | |
with: | |
username: 'insomnia-infra' | |
- name: Update brew | |
run: brew update | |
# Update Homebrew's Inso(mnia) formulae | |
# https://github.com/Homebrew/actions/tree/master/bump-formulae | |
- name: Bump Inso (Beta) Formula | |
uses: Homebrew/actions/bump-formulae@master | |
with: | |
token: ${{ secrets.HOMEBREW_PR_GH_TOKEN }} | |
formulae: inso-beta | |
- name: Bump Inso Formula | |
uses: Homebrew/actions/bump-formulae@master | |
with: | |
token: ${{ secrets.HOMEBREW_PR_GH_TOKEN }} | |
formulae: inso | |
- name: Bump Insomnia Formula | |
uses: Homebrew/actions/bump-formulae@master | |
with: | |
token: ${{ secrets.HOMEBREW_PR_GH_TOKEN }} | |
# Bump only these formulae if outdated | |
formulae: insomnia |