build(deps): bump github.com/Djarvur/go-err113 from 0.0.0-20210108212216-aea10b59be24 to 0.1.1 #3108
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: Check Documentation | |
on: | |
pull_request: | |
jobs: | |
doc: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
env: | |
# https://github.com/actions/setup-go#supported-version-syntax | |
# ex: | |
# - 1.18beta1 -> 1.18.0-beta.1 | |
# - 1.18rc1 -> 1.18.0-rc.1 | |
GO_VERSION: '1.25' | |
HUGO_VERSION: 0.148.1 | |
CGO_ENABLED: 0 | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-go@v6 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- run: go mod download | |
- name: Setup Hugo | |
run: | | |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ | |
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb | |
- name: Build Documentation | |
run: make docs_build |