Skip to content

Bump the github-actions group with 2 updates #806

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #806

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@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Ruby
uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64 # v1.299.0
with:
bundler-cache: true # would run bundle install
- name: Run the build
run: bundle exec rake static_checks:all
env:
RUN_EXTERNAL_CHECKS: true