This repository was archived by the owner on Dec 29, 2025. It is now read-only.
Bump nokogiri from 1.18.10 to 1.19.0 (#140) #305
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Rails assets | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: {} | |
| schedule: | |
| - cron: "0 21 * * 6" | |
| permissions: | |
| contents: read | |
| jobs: | |
| precompile: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@ae195bbe749a7cef685ac729197124a48305c1cb # v1.276.0 | |
| with: | |
| rubygems: latest | |
| bundler: latest | |
| bundler-cache: true | |
| - run: bin/rails SECRET_KEY_BASE_DUMMY=1 assets:precompile |