2022-02-07 16:49:56 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
- name: Cache Homebrew Bundler RubyGems
|
|
|
|
id: cache
|
|
|
|
uses: actions/cache@v1
|
|
|
|
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
|
|
|
|
|
|
|
|
# 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 }}
|
2022-02-24 15:57:17 +00:00
|
|
|
formulae: inso-beta
|
2022-02-07 16:49:56 +00:00
|
|
|
- name: Bump Inso Formula
|
|
|
|
uses: Homebrew/actions/bump-formulae@master
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.HOMEBREW_PR_GH_TOKEN }}
|
2022-02-24 15:57:17 +00:00
|
|
|
formulae: inso
|
2022-02-07 16:49:56 +00:00
|
|
|
- name: Bump Insomnia Formula
|
|
|
|
uses: Homebrew/actions/bump-formulae@master
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.HOMEBREW_PR_GH_TOKEN }}
|
|
|
|
# Bump only these formulae if outdated
|
2022-02-24 15:57:17 +00:00
|
|
|
formulae: insomnia
|