mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
359d7e3271
* Update default timeouts for .github/workflows/homebrew.yml [skip ci] * configure timeout --------- Co-authored-by: Filipe Freire <filipe.freire@konghq.com>
64 lines
1.8 KiB
YAML
64 lines
1.8 KiB
YAML
name: Update Homebrew
|
|
|
|
on:
|
|
schedule:
|
|
# weekdays at 00:00
|
|
- cron: '0 0 * * 1-5'
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update_homebrew:
|
|
timeout-minutes: 5
|
|
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
|