Bump actions/setup-node from 5 to 6 in the github-actions group #414
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: "build" | |
| on: | |
| pull_request: | |
| branches: ["*"] | |
| types: | |
| # NOTE: these are the defaults | |
| - opened | |
| - synchronize | |
| - reopened | |
| # NOTE: we add this to let the conversion from draft trigger the workflows | |
| - ready_for_review | |
| jobs: | |
| test: | |
| name: "Test Clients" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: "actions/checkout@v5" | |
| - uses: "ruby/setup-ruby@v1" | |
| with: | |
| bundler-cache: true | |
| - uses: "authzed/action-spicedb@v1" | |
| - name: "Install dependencies" | |
| run: "bundle install" | |
| - name: "Run rspec" | |
| run: "bundle exec rspec" | |
| protobuf: | |
| name: "Generate Protobufs" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: "actions/checkout@v5" | |
| - uses: "ruby/setup-ruby@v1" | |
| with: | |
| bundler-cache: true | |
| - uses: "arduino/setup-protoc@v3" | |
| with: | |
| version: "24.4" | |
| - name: "Install Homebrew & gRPC" | |
| run: | | |
| bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/runner/.bash_profile | |
| eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
| brew install grpc | |
| which grpc_ruby_plugin | |
| echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH | |
| - uses: "bufbuild/[email protected]" | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |