chore(deps): bump github.com/mikefarah/yq/v4 from 4.28.2 to 4.40.4 #447
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
# GitHub Actions Workflow definition for validating Pull Requests | |
name: pr-build | |
on: [pull_request] | |
jobs: | |
app: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Unshallow | |
run: git fetch --prune --unshallow | |
- name: Setup Go | |
uses: actions/[email protected] | |
with: | |
go-version-file: 'go.mod' | |
- name: Run GoReleaser | |
uses: goreleaser/[email protected] | |
with: | |
version: v1.10.2 | |
args: release --snapshot --skip-publish --rm-dist | |
docs: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.84.0' | |
extended: true | |
- name: Build root docs with Hugo | |
run: hugo --minify --source docs/root | |
- name: Build current-version docs with Hugo | |
run: hugo --minify --source docs/current-version |