Skip to content

Bump github.com/gohugoio/hugo from 0.120.4 to 0.122.0 #261

Bump github.com/gohugoio/hugo from 0.120.4 to 0.122.0

Bump github.com/gohugoio/hugo from 0.120.4 to 0.122.0 #261

Workflow file for this run

name: docs
on:
push:
branches:
- main
tags:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
name: Documentation check
env:
GOBIN: /tmp/.bin
steps:
- name: Checkout code into the Go module directory.
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Check docs
run: make check-docs