Update actions/checkout action to v4.1.7 #1964
Workflow file for this run
This file contains 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: Check Website | |
on: | |
pull_request: | |
branches: | |
- "current-docs" | |
- "master" | |
jobs: | |
check-website: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
with: | |
fetch-depth: 0 | |
- uses: cachix/install-nix-action@v27 | |
- name: Set current version | |
run: echo "DOCSPELL_VERSION=$(cat version.sbt | grep version | cut -d= -f2 | xargs)" >> $GITHUB_ENV | |
- name: Build website (${{ env.DOCSPELL_VERSION }}) | |
run: nix develop .#ci --command sbt make-website |