Bump nokogiri from 1.18.3 to 1.18.4 in the bundler group across 1 directory #50
Workflow file for this run
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: CI Checks | |
| on: pull_request | |
| concurrency: | |
| group: "ci-${{github.head_ref}}" | |
| cancel-in-progress: true | |
| jobs: | |
| build-website: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.3" | |
| bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
| - uses: haskell-actions/setup@v2 | |
| id: haskell-setup | |
| with: | |
| ghc-version: 9.8 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| gcc \ | |
| make | |
| - name: Restore cached dependencies | |
| uses: actions/cache/restore@v4 | |
| id: cache | |
| with: | |
| path: ${{ steps.haskell-setup.outputs.cabal-store }} | |
| key: ${{ runner.os }}-cabal | |
| restore-keys: | | |
| ${{ runner.os }}-cabal | |
| - name: Install Pandoc and pandoc-sidenote | |
| run: | | |
| cabal update | |
| cabal install pandoc-cli | |
| cabal install pandoc-sidenote | |
| # Cache dependencies already here, so that we do not have to rebuild them should the subsequent steps fail. | |
| - name: Save cached dependencies | |
| uses: actions/cache/save@v4 | |
| # If we had an exact cache hit, trying to save the cache would error because of key clash. | |
| if: steps.cache.outputs.cache-hit != 'true' | |
| with: | |
| path: ${{ steps.haskell-setup.outputs.cabal-store }} | |
| key: ${{ runner.os }}-cabal | |
| - name: Build | |
| run: | | |
| make production |