Skip to content

Add openbolt support #9

Add openbolt support

Add openbolt support #9

Workflow file for this run

name: Check if casks are up-to-date
on:
pull_request:
branches: [main]
permissions:
contents: read
jobs:
check_casks:
name: Check casks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Update openvox8-agent cask
run: bundle exec rake 'brew:cask[agent,8]'
- name: Check if openvox8-agent is up-to-date
run: git diff --exit-code
- name: Update openvox8-openbolt cask
run: bundle exec rake 'brew:cask[openbolt,8]'
- name: Check if openvox8-openbolt is up-to-date
run: git diff --exit-code