Skip to content

Bump the github-actions group with 3 updates #798

Bump the github-actions group with 3 updates

Bump the github-actions group with 3 updates #798

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@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Ruby
uses: ruby/setup-ruby@8d27f39a5e7ad39aebbcbd1324f7af020229645c # v1.287.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