diff options
author | 2024-06-01 20:46:55 +0100 | |
---|---|---|
committer | 2024-06-01 20:46:55 +0100 | |
commit | 8de0ebda6dd99fdcdb588ac916df8fcf7b4485dd (patch) | |
tree | 242cd77fe1d729f1e5ec1b7e662f814751af1c6e /.github | |
parent | Update hugo-book theme to v10 (diff) |
Update Hugo versions in CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docs.yaml | 9 | ||||
-rw-r--r-- | .github/workflows/lint-docs.yaml | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index a4ed5bb..8569ea1 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -32,10 +32,11 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Install Hugo CLI - run: | - sudo apt-get update -y - sudo apt-get install -y hugo + - name: Setup Hugo + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: '0.124.0' + extended: true - name: Checkout uses: actions/checkout@v4 with: diff --git a/.github/workflows/lint-docs.yaml b/.github/workflows/lint-docs.yaml index cc7be0a..1057696 100644 --- a/.github/workflows/lint-docs.yaml +++ b/.github/workflows/lint-docs.yaml @@ -7,10 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Install hugo - run: | - sudo apt-get update -y - sudo apt-get install -y hugo + - name: Setup Hugo + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: '0.124.0' + extended: true - name: Run hugo run: | cd docs |