Skip to content

Bump the github-actions group with 3 updates #805

Bump the github-actions group with 3 updates

Bump the github-actions group with 3 updates #805

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@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: audit
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Ruby
uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.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