Skip to content

Bump the github-actions group with 2 updates #778

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #778

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@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Ruby
uses: ruby/setup-ruby@f41e084df884422b269f4c01c3748a9df4431a75 # v1.236.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