Skip to content

Bump the ruby-deps group with 14 updates #801

Bump the ruby-deps group with 14 updates

Bump the ruby-deps group with 14 updates #801

Workflow file for this run

# This workflow will build a middleman project with bundle
name: Testing For PRs
on: [ pull_request ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
with:
egress-policy: audit
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Ruby
uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # v1.263.0
with:
bundler-cache: true # would run bundle install
- name: Run the build
run: bundle exec middleman build
env:
RUN_EXTERNAL_CHECKS: true
- name: Verbose build
if: failure()
run: bundle exec middleman build --verbose
env:
RUN_EXTERNAL_CHECKS: true