Skip to content

Bump nodenv/.github from 4.6.0 to 5.1.1 #25

Bump nodenv/.github from 4.6.0 to 5.1.1

Bump nodenv/.github from 4.6.0 to 5.1.1 #25

Workflow file for this run

name: brew test-bot
on:
push:
branches: [main]
pull_request:
permissions: {}
jobs:
test-bot:
strategy:
matrix:
os: [ubuntu-22.04, macos-13, macos-15]
runs-on: ${{ matrix.os }}
permissions:
actions: read
checks: read
contents: read
pull-requests: read
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@main
with:
token: ${{ github.token }}
- name: Cache Homebrew Bundler RubyGems
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ matrix.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
restore-keys: ${{ matrix.os }}-rubygems-
- run: brew test-bot --only-cleanup-before
- run: brew test-bot --only-setup
- run: brew test-bot --only-tap-syntax
- run: brew test-bot --only-formulae
if: github.event_name == 'pull_request'
- name: Upload bottles as artifact
if: always() && github.event_name == 'pull_request'
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: bottles_${{ matrix.os }}
path: "*.bottle.*"