/
githubmirror
/
homebrew-cask
Обзор
Документация
Войти
/
githubmirror
/
homebrew-cask
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/cache.yml
47 строк
1 KB
dependabot[bot]
build(deps): bump the github-actions group across 1 directory with 9 updates
05 авг 2026, 05:14
Не верифицирован
05 авг 2026, 05:14
c735b84
Код
Авторство
О чём код?
name: Cache on: push: paths: - .github/workflows/cache.yml schedule: - cron: "0 */6 * * *" # every 6 hours concurrency: group: cache cancel-in-progress: true permissions: contents: read jobs: update: if: github.repository_owner == 'Homebrew' strategy: matrix: runner: - macos-14 - macos-15 - macos-15-intel - macos-26 - ubuntu-latest runs-on: ${{ matrix.runner }} steps: - name: Set up Homebrew id: set-up-homebrew uses: Homebrew/actions/setup-homebrew@fd832223f9f99ebf0244dd20658680e5d4aca049 # 2026.08.03.2 with: core: false cask: false - name: Cache Homebrew Gems id: cache uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ${{ steps.set-up-homebrew.outputs.gems-path }} key: ${{ matrix.runner }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} restore-keys: ${{ matrix.runner }}-rubygems- - name: Install Homebrew Gems id: gems run: brew install-bundler-gems --groups=audit,style