mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
53 lines
1.6 KiB
YAML
53 lines
1.6 KiB
YAML
|
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 }}
|
||
|
formulae: --open-pr inso-beta
|
||
|
- name: Bump Inso Formula
|
||
|
uses: Homebrew/actions/bump-formulae@master
|
||
|
with:
|
||
|
token: ${{ secrets.HOMEBREW_PR_GH_TOKEN }}
|
||
|
formulae: --open-pr 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: --open-pr insomnia
|