├── .nvmrc ├── .husky ├── .gitignore ├── pre-commit └── post-merge ├── .dockerignore ├── .npmrc ├── .envrc ├── .gitignore ├── .vscode └── settings.json ├── .github ├── CODEOWNERS ├── workflows │ ├── purge-readme-image-cache.yml │ ├── dependency-review.yml │ ├── codeql-analysis.yml │ ├── label-commenter.yml │ ├── update-major-tag.yml │ ├── dev-image.yml │ ├── test-action.yml │ ├── release.yml │ └── test.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── 3_proposal.yml │ ├── 2_bug_report.txt │ └── 1_user_support.yml ├── dependabot.yml └── label-commenter-config.yml ├── .editorconfig ├── .prettierrc.json ├── src ├── index.ts ├── get-arch.ts ├── constants.ts ├── get-os.ts ├── get-url.ts ├── get-latest-version.ts ├── main.ts └── installer.ts ├── jest.config.js ├── __tests__ ├── get-os.test.ts ├── get-arch.test.ts ├── get-url.test.ts ├── get-latest-version.test.ts ├── data │ ├── brew.json │ └── github.json └── main.test.ts ├── tsconfig.json ├── .eslintrc.json ├── action.yml ├── Makefile ├── Dockerfile ├── LICENSE ├── release.sh ├── package.json ├── README.md └── CHANGELOG.md /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.11.1 2 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .* 2 | * 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- 1 | npm ci 2 | git remote prune origin 3 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | nvmrc=~/.nvm/nvm.sh 2 | source $nvmrc 3 | nvm use 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | coverage 3 | .npm 4 | .eslintcache 5 | .env 6 | node_modules 7 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true, 3 | "deno.enable": false 4 | } -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners 2 | 3 | * @peaceiris 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 2 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [Makefile] 12 | indent_size = 4 13 | indent_style = tab 14 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100, 3 | "tabWidth": 2, 4 | "useTabs": false, 5 | "semi": true, 6 | "singleQuote": true, 7 | "trailingComma": "none", 8 | "bracketSpacing": false, 9 | "arrowParens": "avoid", 10 | "parser": "typescript" 11 | } 12 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import * as core from '@actions/core'; 2 | import * as main from './main'; 3 | 4 | (async (): Promise => { 5 | try { 6 | await main.run(); 7 | } catch (e) { 8 | core.setFailed(`Action failed with error ${e.message}`); 9 | } 10 | })(); 11 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /src/get-arch.ts: -------------------------------------------------------------------------------- 1 | export default function getArch(arch: string): string { 2 | switch (arch) { 3 | case 'x64': 4 | return '64bit'; 5 | case 'arm': 6 | return 'ARM'; 7 | case 'arm64': 8 | return 'ARM64'; 9 | default: 10 | throw new Error(`${arch} is not supported`); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- 1 | export enum Tool { 2 | Name = 'Hugo', 3 | Org = 'gohugoio', 4 | Repo = 'hugo', 5 | CmdName = 'hugo', 6 | CmdOptVersion = 'version', 7 | TestVersionLatest = '0.83.1', 8 | TestVersionSpec = '0.82.1' 9 | } 10 | 11 | export enum Action { 12 | WorkDirName = 'actions_hugo', 13 | TempDirName = '_temp' 14 | } 15 | -------------------------------------------------------------------------------- /src/get-os.ts: -------------------------------------------------------------------------------- 1 | export default function getOS(platform: string): string { 2 | switch (platform) { 3 | case 'linux': 4 | return 'Linux'; 5 | case 'darwin': 6 | return 'macOS'; 7 | case 'win32': 8 | return 'Windows'; 9 | default: 10 | throw new Error(`${platform} is not supported`); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /__tests__/get-os.test.ts: -------------------------------------------------------------------------------- 1 | import getOS from '../src/get-os'; 2 | 3 | describe('getOS', () => { 4 | test('os type', () => { 5 | expect(getOS('linux')).toBe('Linux'); 6 | expect(getOS('darwin')).toBe('macOS'); 7 | expect(getOS('win32')).toBe('Windows'); 8 | }); 9 | 10 | test('exception', () => { 11 | expect(() => { 12 | getOS('centos'); 13 | }).toThrowError('centos is not supported'); 14 | }); 15 | }); 16 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": ["ES2019"], 4 | "module": "commonjs", 5 | "target": "ES2019", 6 | "sourceMap": true, 7 | "outDir": "./lib", 8 | "rootDir": "./src", 9 | "removeComments": true, 10 | "strict": true, 11 | "noImplicitAny": true, 12 | "esModuleInterop": true, 13 | "resolveJsonModule": true 14 | }, 15 | "exclude": ["node_modules", "**/*.test.ts"] 16 | } 17 | -------------------------------------------------------------------------------- /.github/workflows/purge-readme-image-cache.yml: -------------------------------------------------------------------------------- 1 | name: Purge image cache 2 | 3 | on: 4 | schedule: 5 | - cron: '4 18 * * */7' 6 | 7 | jobs: 8 | purge: 9 | runs-on: ubuntu-22.04 10 | steps: 11 | 12 | - run: > 13 | curl -sL https://github.com/${GITHUB_REPOSITORY} | 14 | grep -oE ' { 8 | if (extended === 'true') { 9 | return 'extended_'; 10 | } else { 11 | return ''; 12 | // } else { 13 | // throw new Error(`Invalid input (extended): ${extended}`); 14 | } 15 | }; 16 | 17 | const ext = (os: string): string => { 18 | if (os === 'Windows') { 19 | return 'zip'; 20 | } else { 21 | return 'tar.gz'; 22 | } 23 | }; 24 | 25 | const hugoName = `hugo_${extendedStr(extended)}${version}_${os}-${arch}`; 26 | const baseURL = 'https://github.com/gohugoio/hugo/releases/download'; 27 | const url = `${baseURL}/v${version}/${hugoName}.${ext(os)}`; 28 | 29 | return url; 30 | } 31 | -------------------------------------------------------------------------------- /src/get-latest-version.ts: -------------------------------------------------------------------------------- 1 | import fetch from 'node-fetch'; 2 | 3 | export function getURL(org: string, repo: string, api: string): string { 4 | let url = ''; 5 | 6 | if (api === 'brew') { 7 | url = `https://formulae.brew.sh/api/formula/${repo}.json`; 8 | } else if (api === 'github') { 9 | url = `https://api.github.com/repos/${org}/${repo}/releases/latest`; 10 | } 11 | 12 | return url; 13 | } 14 | 15 | export async function getLatestVersion(org: string, repo: string, api: string): Promise { 16 | const url = getURL(org, repo, api); 17 | const response = await fetch(url); 18 | const json = await response.json(); 19 | let latestVersion = ''; 20 | if (api === 'brew') { 21 | latestVersion = json.versions.stable; 22 | } else if (api === 'github') { 23 | latestVersion = json.tag_name; 24 | } 25 | return latestVersion; 26 | } 27 | -------------------------------------------------------------------------------- /.github/workflows/test-action.yml: -------------------------------------------------------------------------------- 1 | name: Daily Test 2 | 3 | on: 4 | schedule: 5 | - cron: '13 13 * * *' 6 | workflow_dispatch: 7 | 8 | jobs: 9 | test: 10 | runs-on: ${{ matrix.os }} 11 | strategy: 12 | matrix: 13 | os: 14 | - 'ubuntu-20.04' 15 | - 'ubuntu-latest' 16 | - 'macos-latest' 17 | - 'windows-latest' 18 | hugo-version: 19 | - 'latest' 20 | - '0.61.0' 21 | extended: 22 | - true 23 | - false 24 | steps: 25 | - uses: actions/checkout@v4 26 | 27 | - name: Setup Hugo 28 | uses: peaceiris/actions-hugo@v3.0.0 29 | with: 30 | hugo-version: ${{ matrix.hugo-version }} 31 | extended: ${{ matrix.extended }} 32 | 33 | - name: Run hugo version 34 | run: echo "::set-output name=hugo_version::$(hugo version)" 35 | id: hugo_version 36 | 37 | - name: '${{ steps.hugo_version.outputs.hugo_version }}' 38 | run: echo '${{ steps.hugo_version.outputs.hugo_version }}' 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Shohei Ueda (peaceiris) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | push: 5 | tags: 6 | - 'v*.*.*' 7 | 8 | jobs: 9 | release: 10 | runs-on: ubuntu-22.04 11 | steps: 12 | - uses: actions/checkout@v4 13 | 14 | - name: Dump GitHub context 15 | env: 16 | GITHUB_CONTEXT: ${{ toJson(github) }} 17 | run: echo "${GITHUB_CONTEXT}" 18 | 19 | - name: Install github/hub 20 | run: | 21 | export HUB_VERSION="2.14.2" 22 | curl -fsSL https://github.com/github/hub/raw/8d91904208171b013f9a9d1175f4ab39068db047/script/get | bash -s "${HUB_VERSION}" 23 | 24 | - name: Create release 25 | env: 26 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 27 | run: | 28 | TAG_NAME="${GITHUB_REF##refs/tags/}" 29 | echo "See [CHANGELOG.md](https://github.com/${GITHUB_REPOSITORY}/blob/${TAG_NAME}/CHANGELOG.md) for more details." > ./release_notes.md 30 | RELEASE_NAME="$(jq -r '.name' ./package.json)" 31 | sed -i "1i${RELEASE_NAME} ${TAG_NAME}\n" ./release_notes.md 32 | ./bin/hub release create \ 33 | --draft \ 34 | --prerelease \ 35 | --file ./release_notes.md \ 36 | "${TAG_NAME}" 37 | -------------------------------------------------------------------------------- /__tests__/get-url.test.ts: -------------------------------------------------------------------------------- 1 | import getURL from '../src/get-url'; 2 | 3 | describe('getURL()', () => { 4 | test('get a URL to an asset for each platform', () => { 5 | const baseURL = 'https://github.com/gohugoio/hugo/releases/download/v0.58.2'; 6 | const urlLinux = `${baseURL}/hugo_0.58.2_Linux-64bit.tar.gz`; 7 | const urlLinuxExtended = `${baseURL}/hugo_extended_0.58.2_Linux-64bit.tar.gz`; 8 | const urlMacOS = `${baseURL}/hugo_0.58.2_macOS-64bit.tar.gz`; 9 | const urlMacOSExtended = `${baseURL}/hugo_extended_0.58.2_macOS-64bit.tar.gz`; 10 | const urlWindows = `${baseURL}/hugo_0.58.2_Windows-64bit.zip`; 11 | expect(getURL('Linux', '64bit', 'false', '0.58.2')).toBe(urlLinux); 12 | expect(getURL('Linux', '64bit', 'true', '0.58.2')).not.toBe(urlLinux); 13 | expect(getURL('MyOS', '64bit', 'false', '0.58.2')).not.toBe(urlLinux); 14 | expect(getURL('Linux', '64bit', 'false', '0.58.1')).not.toBe(urlLinux); 15 | expect(getURL('Linux', '64bit', 'true', '0.58.2')).toBe(urlLinuxExtended); 16 | expect(getURL('macOS', '64bit', 'false', '0.58.2')).toBe(urlMacOS); 17 | expect(getURL('macOS', '64bit', 'true', '0.58.2')).toBe(urlMacOSExtended); 18 | expect(getURL('Windows', '64bit', 'false', '0.58.2')).toBe(urlWindows); 19 | }); 20 | }); 21 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: 'Test' 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | paths-ignore: 8 | - '**.md' 9 | pull_request: 10 | paths-ignore: 11 | - '**.md' 12 | 13 | jobs: 14 | test: 15 | runs-on: ${{ matrix.os }} 16 | strategy: 17 | fail-fast: false 18 | matrix: 19 | os: 20 | - 'ubuntu-22.04' 21 | - 'ubuntu-20.04' 22 | - 'ubuntu-latest' 23 | - 'macos-latest' 24 | - 'windows-latest' 25 | steps: 26 | - uses: actions/checkout@v4 27 | 28 | - uses: actions/setup-node@v4 29 | with: 30 | node-version-file: '.nvmrc' 31 | cache: 'npm' 32 | 33 | - run: npm ci 34 | 35 | - name: Run prettier 36 | if: startsWith(matrix.os, 'ubuntu-22.04') 37 | run: npm run format:check 38 | 39 | - name: Run eslint 40 | if: startsWith(matrix.os, 'ubuntu-22.04') 41 | run: npm run lint 42 | 43 | - name: Run ncc 44 | if: startsWith(matrix.os, 'ubuntu-22.04') 45 | run: npm run build 46 | 47 | - run: npm test 48 | 49 | - name: Upload test coverage as artifact 50 | uses: actions/upload-artifact@v4 51 | with: 52 | name: coverage-${{ matrix.os }} 53 | path: coverage 54 | 55 | - uses: codecov/codecov-action@v5 56 | -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # fail on unset variables and command errors 4 | set -eu -o pipefail # -x: is for debugging 5 | 6 | DEFAULT_BRANCH="main" 7 | 8 | if [ "$(git branch --show-current)" != "${DEFAULT_BRANCH}" ]; then 9 | echo "$0: Current branch is not ${DEFAULT_BRANCH}" 1>&2 10 | exit 1 11 | fi 12 | 13 | RELEASE_TYPE_LIST="prerelease prepatch patch preminor minor major premajor" 14 | if command -v fzf; then 15 | RELEASE_TYPE=$(echo "${RELEASE_TYPE_LIST}" | tr ' ' '\n' | fzf --layout=reverse) 16 | else 17 | select sel in ${RELEASE_TYPE_LIST}; do 18 | RELEASE_TYPE="${sel}" 19 | break 20 | done 21 | fi 22 | 23 | echo "$0: Create ${RELEASE_TYPE} release, continue? (y/n)" 24 | read -r res 25 | if [ "${res}" = "n" ]; then 26 | echo "$0: Stop script" 27 | exit 0 28 | fi 29 | 30 | git fetch origin 31 | git pull origin "${DEFAULT_BRANCH}" 32 | git tag -d v2 || true 33 | git pull origin --tags 34 | 35 | npm ci 36 | 37 | mkdir ./lib 38 | npm run build 39 | git add ./lib/index.js 40 | git commit -m "chore(release): Add build assets" 41 | 42 | npm run release -- --release-as "${RELEASE_TYPE}" --preset eslint 43 | 44 | git rm ./lib/index.js 45 | rm -rf ./lib 46 | git commit -m "chore(release): Remove build assets [skip ci]" 47 | 48 | TAG_NAME="v$(jq -r '.version' ./package.json)" 49 | git push origin "${DEFAULT_BRANCH}" 50 | git push origin "${TAG_NAME}" 51 | -------------------------------------------------------------------------------- /.github/label-commenter-config.yml: -------------------------------------------------------------------------------- 1 | labels: 2 | - name: invalid 3 | labeled: 4 | issue: 5 | body: Please follow the issue templates. 6 | action: close 7 | - name: forum 8 | labeled: 9 | issue: 10 | body: | 11 | Please ask questions about GitHub Actions or Hugo at the following forum. 12 | - [GitHub Actions Community Forum](https://github.community/c/github-actions) 13 | - [Hugo Community Forum](https://discourse.gohugo.io/) 14 | action: close 15 | - name: wontfix 16 | labeled: 17 | issue: 18 | body: This will not be worked on but we appreciate your contribution. 19 | action: close 20 | unlabeled: 21 | issue: 22 | body: This has become active again. 23 | action: open 24 | - name: duplicate 25 | labeled: 26 | issue: 27 | body: This issue already exists. 28 | action: close 29 | - name: good first issue 30 | labeled: 31 | issue: 32 | body: This issue is easy for contributing. Everyone can work on this. 33 | - name: resolved 34 | labeled: 35 | issue: 36 | body: | 37 | This issue has been **LOCKED** because of it being resolved! 38 | 39 | The issue has been fixed and is therefore considered resolved. 40 | If you still encounter this or it has changed, open a new issue instead of responding to solved ones. 41 | action: close 42 | locking: lock 43 | lock_reason: resolved 44 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import * as core from '@actions/core'; 2 | import * as exec from '@actions/exec'; 3 | import {getLatestVersion} from './get-latest-version'; 4 | import {installer} from './installer'; 5 | import {Tool} from './constants'; 6 | 7 | export interface ActionResult { 8 | exitcode: number; 9 | output: string; 10 | } 11 | 12 | export async function showVersion(cmd: string, args: string[]): Promise { 13 | const result: ActionResult = { 14 | exitcode: 0, 15 | output: '' 16 | }; 17 | 18 | const options = { 19 | listeners: { 20 | stdout: (data: Buffer): void => { 21 | result.output += data.toString(); 22 | } 23 | } 24 | }; 25 | 26 | result.exitcode = await exec.exec(cmd, args, options); 27 | core.debug(`command: ${cmd} ${args}`); 28 | core.debug(`exit code: ${result.exitcode}`); 29 | core.debug(`stdout: ${result.output}`); 30 | return result; 31 | } 32 | 33 | export async function run(): Promise { 34 | const toolVersion: string = core.getInput('hugo-version'); 35 | let installVersion = ''; 36 | 37 | let result: ActionResult = { 38 | exitcode: 0, 39 | output: '' 40 | }; 41 | 42 | if (toolVersion === '' || toolVersion === 'latest') { 43 | installVersion = await getLatestVersion(Tool.Org, Tool.Repo, 'brew'); 44 | } else { 45 | installVersion = toolVersion; 46 | } 47 | 48 | core.info(`${Tool.Name} version: ${installVersion}`); 49 | await installer(installVersion); 50 | result = await showVersion(Tool.CmdName, [Tool.CmdOptVersion]); 51 | 52 | return result; 53 | } 54 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_proposal.yml: -------------------------------------------------------------------------------- 1 | name: Proposal 2 | description: Suggest an idea for this project 3 | title: 'proposal: ' 4 | labels: proposal 5 | assignees: peaceiris 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: 10 | Please note we will close your issue without comment if you do not fill out the issue checklist below and provide ALL the requested information. 11 | - type: checkboxes 12 | attributes: 13 | label: Checklist 14 | description: Checklist before creating an issue. 15 | options: 16 | - label: "I am using the latest version of this action." 17 | required: true 18 | - label: "I have read the latest README and followed the instructions." 19 | required: true 20 | - label: "I have read the latest GitHub Actions official documentation and learned the basic spec and concepts." 21 | required: true 22 | - type: textarea 23 | attributes: 24 | label: "Describe your proposal" 25 | description: "A clear and concise description of what the proposal is." 26 | validations: 27 | required: true 28 | - type: textarea 29 | attributes: 30 | label: "Describe the solution you'd like" 31 | description: "A clear and concise description of what you want to happen." 32 | validations: 33 | required: true 34 | - type: textarea 35 | attributes: 36 | label: "Describe alternatives you've considered" 37 | description: "A clear and concise description of any alternative solutions or features you've considered." 38 | validations: 39 | required: true 40 | - type: textarea 41 | attributes: 42 | label: "Additional context" 43 | description: "Add any other context or screenshots about the feature request here." 44 | validations: 45 | required: true 46 | -------------------------------------------------------------------------------- /__tests__/get-latest-version.test.ts: -------------------------------------------------------------------------------- 1 | import {getURL, getLatestVersion} from '../src/get-latest-version'; 2 | import nock from 'nock'; 3 | import {FetchError} from 'node-fetch'; 4 | import {Tool} from '../src/constants'; 5 | import jsonTestBrew from './data/brew.json'; 6 | import jsonTestGithub from './data/github.json'; 7 | 8 | beforeEach(() => { 9 | jest.resetModules(); 10 | }); 11 | 12 | afterEach(() => { 13 | nock.cleanAll(); 14 | }); 15 | 16 | describe('getURL()', () => { 17 | test('return expected URL', () => { 18 | const urlBrewExpected = `https://formulae.brew.sh/api/formula/${Tool.Repo}.json`; 19 | const urlBrew: string = getURL(Tool.Org, Tool.Repo, 'brew'); 20 | expect(urlBrew).toMatch(urlBrewExpected); 21 | 22 | const urlGithubExpected = `https://api.github.com/repos/${Tool.Org}/${Tool.Repo}/releases/latest`; 23 | const urlGithub: string = getURL(Tool.Org, Tool.Repo, 'github'); 24 | expect(urlGithub).toMatch(urlGithubExpected); 25 | }); 26 | }); 27 | 28 | describe('getLatestVersion()', () => { 29 | test('return latest version via brew', async () => { 30 | nock('https://formulae.brew.sh').get(`/api/formula/${Tool.Repo}.json`).reply(200, jsonTestBrew); 31 | 32 | const versionLatest: string = await getLatestVersion(Tool.Org, Tool.Repo, 'brew'); 33 | expect(versionLatest).toMatch(Tool.TestVersionLatest); 34 | }); 35 | 36 | test('return latest version via GitHub', async () => { 37 | nock('https://api.github.com') 38 | .get(`/repos/${Tool.Org}/${Tool.Repo}/releases/latest`) 39 | .reply(200, jsonTestGithub); 40 | 41 | const versionLatest: string = await getLatestVersion(Tool.Org, Tool.Repo, 'github'); 42 | expect(versionLatest).toMatch(Tool.TestVersionLatest); 43 | }); 44 | 45 | test('return exception 404', async () => { 46 | nock('https://formulae.brew.sh').get(`/api/formula/${Tool.Repo}.json`).reply(404); 47 | 48 | await expect(getLatestVersion(Tool.Org, Tool.Repo, 'brew')).rejects.toThrowError(FetchError); 49 | }); 50 | }); 51 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_bug_report.txt: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Try the User Support Issue Template first. 3 | title: 'bug: ' 4 | labels: bug 5 | assignees: peaceiris 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: 10 | Please note we will close your issue without comment if you do not fill out the issue checklist below and provide ALL the requested information. 11 | - type: checkboxes 12 | attributes: 13 | label: Checklist 14 | description: Checklist before creating an issue. 15 | options: 16 | - label: "I am using the latest version of this action." 17 | required: true 18 | - label: "I have read the latest README and followed the instructions." 19 | required: true 20 | - label: "I have read the latest GitHub Actions official documentation and learned the basic spec and concepts." 21 | required: true 22 | - type: textarea 23 | attributes: 24 | label: "Describe the bug" 25 | description: "A clear and concise description of what the bug is." 26 | validations: 27 | required: true 28 | - type: textarea 29 | attributes: 30 | label: Relevant links 31 | description: 32 | Links to your public repository, YAML config file, and YAML workflow file. 33 | Please use [a permanent link](https://docs.github.com/en/github/managing-files-in-a-repository/managing-files-on-github/getting-permanent-links-to-files), not a default branch. 34 | render: markdown 35 | value: | 36 | Public repository: 37 | YAML config: 38 | YAML workflow: 39 | validations: 40 | required: true 41 | - type: textarea 42 | attributes: 43 | label: Relevant log output 44 | description: Copy and paste any relevant log output here. 45 | validations: 46 | required: true 47 | - type: textarea 48 | attributes: 49 | label: Additional context. 50 | description: Write any other context about the question here. 51 | validations: 52 | required: true 53 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_user_support.yml: -------------------------------------------------------------------------------- 1 | name: User Support 2 | description: Questions for this action 3 | title: "support: " 4 | labels: support 5 | assignees: peaceiris 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: 10 | Please note we will close your issue without comment if you do not fill out the issue checklist below and provide ALL the requested information. 11 | - type: checkboxes 12 | attributes: 13 | label: Checklist 14 | description: Checklist before creating an issue. 15 | options: 16 | - label: "I am using the latest version of this action." 17 | required: true 18 | - label: "I have read the latest README and followed the instructions." 19 | required: true 20 | - label: "I have read the latest GitHub Actions official documentation and learned the basic spec and concepts." 21 | required: true 22 | - type: textarea 23 | attributes: 24 | label: Describe your question 25 | description: A clear and concise description of what the question is. 26 | validations: 27 | required: true 28 | - type: textarea 29 | attributes: 30 | label: Relevant links 31 | description: 32 | Links to your public repository, YAML config file, and YAML workflow file. 33 | Please use [a permanent link](https://docs.github.com/en/github/managing-files-in-a-repository/managing-files-on-github/getting-permanent-links-to-files), not a default branch. 34 | render: markdown 35 | value: | 36 | Public repository: 37 | YAML config: 38 | YAML workflow: 39 | validations: 40 | required: true 41 | - type: textarea 42 | attributes: 43 | label: Relevant log output 44 | description: Copy and paste any relevant log output here. 45 | validations: 46 | required: true 47 | - type: textarea 48 | attributes: 49 | label: Additional context. 50 | description: Write any other context about the question here. 51 | validations: 52 | required: true 53 | -------------------------------------------------------------------------------- /__tests__/data/brew.json: -------------------------------------------------------------------------------- 1 | {"name":"hugo","full_name":"hugo","tap":"homebrew/core","oldname":null,"aliases":[],"versioned_formulae":[],"desc":"Configurable static site generator","license":"Apache-2.0","homepage":"https://gohugo.io/","versions":{"stable":"0.83.1","head":"HEAD","bottle":true},"urls":{"stable":{"url":"https://github.com/gohugoio/hugo/archive/v0.83.1.tar.gz","tag":null,"revision":null}},"revision":0,"version_scheme":0,"bottle":{"stable":{"rebuild":0,"root_url":"https://ghcr.io/v2/homebrew/core","files":{"arm64_big_sur":{"cellar":":any_skip_relocation","url":"https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:f5997a1858e300787cd6e2e01ff8f87f0d3233f42af4becc040448ce06524d53","sha256":"f5997a1858e300787cd6e2e01ff8f87f0d3233f42af4becc040448ce06524d53"},"big_sur":{"cellar":":any_skip_relocation","url":"https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:32ad322954e9c2962849495c88c88e461d21a0a7d3bfa3aa4892ee34f569bf81","sha256":"32ad322954e9c2962849495c88c88e461d21a0a7d3bfa3aa4892ee34f569bf81"},"catalina":{"cellar":":any_skip_relocation","url":"https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:99078c665152420113fac08aaea7bdf2f8fe230696b724448bb9f2244cfdec55","sha256":"99078c665152420113fac08aaea7bdf2f8fe230696b724448bb9f2244cfdec55"},"mojave":{"cellar":":any_skip_relocation","url":"https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:a45ae895351a549639b40bdbb2a630e8a11ffb68d78a0aa7577faedce4c011d4","sha256":"a45ae895351a549639b40bdbb2a630e8a11ffb68d78a0aa7577faedce4c011d4"}}}},"keg_only":false,"bottle_disabled":false,"options":[],"build_dependencies":["go"],"dependencies":[],"recommended_dependencies":[],"optional_dependencies":[],"uses_from_macos":[],"requirements":[],"conflicts_with":[],"caveats":null,"installed":[],"linked_keg":null,"pinned":false,"outdated":false,"deprecated":false,"deprecation_date":null,"deprecation_reason":null,"disabled":false,"disable_date":null,"disable_reason":null,"analytics":{"install":{"30d":{"hugo":24137,"hugo --HEAD":16},"90d":{"hugo":61006,"hugo --HEAD":51},"365d":{"hugo":246915,"hugo --HEAD":273}},"install_on_request":{"30d":{"hugo":24100,"hugo --HEAD":16},"90d":{"hugo":60903,"hugo --HEAD":51},"365d":{"hugo":244317,"hugo --HEAD":266}},"build_error":{"30d":{"hugo":0}}},"generated_date":"2021-05-21"} 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "actions-hugo", 3 | "version": "3.0.0", 4 | "description": "GitHub Actions for Hugo", 5 | "main": "lib/index.js", 6 | "engines": { 7 | "node": ">=20.10.0", 8 | "npm": ">=10.2.3" 9 | }, 10 | "scripts": { 11 | "all": "npm run format:check && npm run lint && npm test", 12 | "lint": "eslint ./{src,__tests__}/**/*.ts", 13 | "lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts", 14 | "test": "jest --coverage --verbose", 15 | "build": "ncc build ./src/index.ts -o lib", 16 | "tsc": "tsc", 17 | "format": "prettier --write '**/*.ts'", 18 | "format:check": "prettier --check '**/*.ts'", 19 | "release": "standard-version", 20 | "postinstall": "npx husky install" 21 | }, 22 | "lint-staged": { 23 | "{src,__tests__}/**/*.ts": [ 24 | "prettier --check", 25 | "eslint" 26 | ], 27 | "README.md": [ 28 | "npx doctoc@2.1.0 --github" 29 | ] 30 | }, 31 | "repository": { 32 | "type": "git", 33 | "url": "git+https://github.com/peaceiris/actions-hugo.git" 34 | }, 35 | "keywords": [ 36 | "GitHub", 37 | "Actions", 38 | "JavaScript", 39 | "TypeScript", 40 | "Hugo", 41 | "Setup" 42 | ], 43 | "author": "peaceiris", 44 | "license": "MIT", 45 | "bugs": { 46 | "url": "https://github.com/peaceiris/actions-hugo/issues" 47 | }, 48 | "homepage": "https://github.com/peaceiris/actions-hugo#readme", 49 | "dependencies": { 50 | "@actions/core": "^1.10.0", 51 | "@actions/exec": "^1.1.1", 52 | "@actions/io": "^1.1.0", 53 | "@actions/tool-cache": "^1.7.2", 54 | "node-fetch": "^2.6.1" 55 | }, 56 | "devDependencies": { 57 | "@types/jest": "^26.0.20", 58 | "@types/node": "~20", 59 | "@types/node-fetch": "^2.5.8", 60 | "@typescript-eslint/eslint-plugin": "^4.16.1", 61 | "@typescript-eslint/parser": "^4.16.1", 62 | "@vercel/ncc": "^0.38.1", 63 | "eslint": "^7.21.0", 64 | "eslint-plugin-jest": "^24.1.5", 65 | "husky": "^5.1.3", 66 | "jest": "^26.6.3", 67 | "jest-circus": "^26.6.3", 68 | "lint-staged": "^10.5.4", 69 | "nock": "^13.0.10", 70 | "prettier": "2.2.1", 71 | "standard-version": "^9.1.1", 72 | "ts-jest": "^26.5.3", 73 | "typescript": "^4.2.3" 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /src/installer.ts: -------------------------------------------------------------------------------- 1 | import * as core from '@actions/core'; 2 | import * as tc from '@actions/tool-cache'; 3 | import * as io from '@actions/io'; 4 | import getOS from './get-os'; 5 | import getArch from './get-arch'; 6 | import getURL from './get-url'; 7 | import * as path from 'path'; 8 | import {Tool, Action} from './constants'; 9 | 10 | export function getHomeDir(): string { 11 | let homedir = ''; 12 | 13 | if (process.platform === 'win32') { 14 | homedir = process.env['USERPROFILE'] || 'C:\\'; 15 | } else { 16 | homedir = `${process.env.HOME}`; 17 | } 18 | 19 | core.debug(`homeDir: ${homedir}`); 20 | 21 | return homedir; 22 | } 23 | 24 | export async function createWorkDir(): Promise { 25 | const workDir = path.join(getHomeDir(), Action.WorkDirName); 26 | await io.mkdirP(workDir); 27 | core.debug(`workDir: ${workDir}`); 28 | return workDir; 29 | } 30 | 31 | export async function createTempDir(workDir: string): Promise { 32 | const tempDir = path.join(workDir, Action.TempDirName); 33 | await io.mkdirP(tempDir); 34 | core.debug(`tempDir: ${tempDir}`); 35 | return tempDir; 36 | } 37 | 38 | export async function createBinDir(workDir: string): Promise { 39 | const binDir = path.join(workDir, 'bin'); 40 | await io.mkdirP(binDir); 41 | core.addPath(binDir); 42 | core.debug(`binDir: ${binDir}`); 43 | return binDir; 44 | } 45 | 46 | export async function installer(version: string): Promise { 47 | const extended: string = core.getInput('extended'); 48 | core.debug(`Hugo extended: ${extended}`); 49 | 50 | const osName: string = getOS(process.platform); 51 | core.debug(`Operating System: ${osName}`); 52 | 53 | const archName: string = getArch(process.arch); 54 | core.debug(`Processor Architecture: ${archName}`); 55 | 56 | const toolURL: string = getURL(osName, archName, extended, version); 57 | core.debug(`toolURL: ${toolURL}`); 58 | 59 | const workDir = await createWorkDir(); 60 | const binDir = await createBinDir(workDir); 61 | const tempDir = await createTempDir(workDir); 62 | 63 | const toolAssets: string = await tc.downloadTool(toolURL); 64 | let toolBin = ''; 65 | if (process.platform === 'win32') { 66 | const toolExtractedFolder: string = await tc.extractZip(toolAssets, tempDir); 67 | toolBin = `${toolExtractedFolder}/${Tool.CmdName}.exe`; 68 | } else { 69 | const toolExtractedFolder: string = await tc.extractTar(toolAssets, tempDir); 70 | toolBin = `${toolExtractedFolder}/${Tool.CmdName}`; 71 | } 72 | await io.mv(toolBin, binDir); 73 | } 74 | -------------------------------------------------------------------------------- /__tests__/main.test.ts: -------------------------------------------------------------------------------- 1 | import * as main from '../src/main'; 2 | import * as io from '@actions/io'; 3 | import path from 'path'; 4 | import nock from 'nock'; 5 | import {Tool, Action} from '../src/constants'; 6 | import {FetchError} from 'node-fetch'; 7 | import jsonTestBrew from './data/brew.json'; 8 | // import jsonTestGithub from './data/github.json'; 9 | 10 | jest.setTimeout(30000); 11 | 12 | describe('Integration testing run()', () => { 13 | beforeEach(() => { 14 | jest.resetModules(); 15 | }); 16 | 17 | afterEach(async () => { 18 | const workDir = path.join(`${process.env.HOME}`, Action.WorkDirName); 19 | await io.rmRF(workDir); 20 | 21 | delete process.env['INPUT_HUGO-VERSION']; 22 | nock.cleanAll(); 23 | }); 24 | 25 | test('succeed in installing a custom version', async () => { 26 | const testVersion = Tool.TestVersionSpec; 27 | process.env['INPUT_HUGO-VERSION'] = testVersion; 28 | const result: main.ActionResult = await main.run(); 29 | expect(result.exitcode).toBe(0); 30 | expect(result.output).toMatch(`hugo v${testVersion}`); 31 | }); 32 | 33 | test('succeed in installing a custom extended version', async () => { 34 | const testVersion = Tool.TestVersionSpec; 35 | process.env['INPUT_HUGO-VERSION'] = testVersion; 36 | process.env['INPUT_EXTENDED'] = 'true'; 37 | const result: main.ActionResult = await main.run(); 38 | expect(result.exitcode).toBe(0); 39 | expect(result.output).toMatch(`hugo v${testVersion}`); 40 | expect(result.output).toMatch(`extended`); 41 | }); 42 | 43 | test('succeed in installing the latest version', async () => { 44 | const testVersion = 'latest'; 45 | process.env['INPUT_HUGO-VERSION'] = testVersion; 46 | nock('https://formulae.brew.sh').get(`/api/formula/${Tool.Repo}.json`).reply(200, jsonTestBrew); 47 | const result: main.ActionResult = await main.run(); 48 | expect(result.exitcode).toBe(0); 49 | expect(result.output).toMatch(`hugo v${Tool.TestVersionLatest}`); 50 | }); 51 | 52 | test('succeed in installing the latest extended version', async () => { 53 | const testVersion = 'latest'; 54 | process.env['INPUT_HUGO-VERSION'] = testVersion; 55 | process.env['INPUT_EXTENDED'] = 'true'; 56 | nock('https://formulae.brew.sh').get(`/api/formula/${Tool.Repo}.json`).reply(200, jsonTestBrew); 57 | const result: main.ActionResult = await main.run(); 58 | expect(result.exitcode).toBe(0); 59 | expect(result.output).toMatch(`hugo v${Tool.TestVersionLatest}`); 60 | expect(result.output).toMatch(`extended`); 61 | }); 62 | 63 | test('fail to install the latest version due to 404 of brew', async () => { 64 | process.env['INPUT_HUGO-VERSION'] = 'latest'; 65 | nock('https://formulae.brew.sh').get(`/api/formula/${Tool.Repo}.json`).reply(404); 66 | 67 | await expect(main.run()).rejects.toThrowError(FetchError); 68 | }); 69 | }); 70 | 71 | describe('showVersion()', () => { 72 | let result: main.ActionResult = { 73 | exitcode: 0, 74 | output: '' 75 | }; 76 | 77 | test('return version', async () => { 78 | result = await main.showVersion('git', ['--version']); 79 | expect(result.exitcode).toBe(0); 80 | expect(result.output).toMatch(/git version/); 81 | }); 82 | 83 | test('return not found', async () => { 84 | await expect(main.showVersion('gitgit', ['--version'])).rejects.toThrowError(Error); 85 | }); 86 | }); 87 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## GitHub Actions for Hugo 2 | 3 | GitHub Actions for Hugo 4 | 5 | [![Project status: active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) 6 | [![license](https://img.shields.io/github/license/peaceiris/actions-hugo.svg)](https://github.com/peaceiris/actions-hugo/blob/main/LICENSE) 7 | [![release](https://img.shields.io/github/release/peaceiris/actions-hugo.svg)](https://github.com/peaceiris/actions-hugo/releases/latest) 8 | [![GitHub release date](https://img.shields.io/github/release-date/peaceiris/actions-hugo.svg)](https://github.com/peaceiris/actions-hugo/releases) 9 | [![Release Feed](https://img.shields.io/badge/release-feed-yellow)](https://github.com/peaceiris/actions-hugo/releases.atom) 10 | ![Test](https://github.com/peaceiris/actions-hugo/workflows/Test/badge.svg?branch=main&event=push) 11 | ![Code Scanning](https://github.com/peaceiris/actions-hugo/workflows/Code%20Scanning/badge.svg?event=push) 12 | 13 | [![CodeFactor](https://www.codefactor.io/repository/github/peaceiris/actions-hugo/badge)](https://www.codefactor.io/repository/github/peaceiris/actions-hugo) 14 | [![codecov](https://codecov.io/gh/peaceiris/actions-hugo/branch/main/graph/badge.svg)](https://codecov.io/gh/peaceiris/actions-hugo) 15 | [![Maintainability](https://api.codeclimate.com/v1/badges/ebf2eef3a046b396ba9c/maintainability)](https://codeclimate.com/github/peaceiris/actions-hugo/maintainability) 16 | 17 | This **Hugo Setup Action** can install [Hugo] to a virtual machine of **GitHub Actions**. 18 | **Hugo extended** version, **Hugo Modules**, Linux (Ubuntu), macOS, and Windows are supported. 19 | 20 | [Hugo]: https://github.com/gohugoio/hugo 21 | 22 | From `v2`, this Hugo Setup Action has migrated to a JavaScript (TypeScript) action. 23 | We no longer build or pull a Hugo docker image. 24 | Thanks to this change, we can complete this action in less than a few seconds. 25 | (A docker base action was taking about 1 min or more execution time to build and pull a docker image.) 26 | 27 | | OS (runs-on) | ubuntu-latest, ubuntu-20.04, ubuntu-22.04 | macos-latest | windows-2019 | 28 | |---|:---:|:---:|:---:| 29 | | Support | ✅️ | ✅️ | ✅️ | 30 | 31 | | Hugo type | Hugo Extended | Hugo Modules | Latest Hugo | 32 | |---|:---:|:---:|:---:| 33 | | Support | ✅️ | ✅️ | ✅️ | 34 | 35 | 36 | 37 | ## Table of Contents 38 | 39 | 40 | 41 | 42 | - [Getting started](#getting-started) 43 | - [⭐️ Create your workflow](#%EF%B8%8F-create-your-workflow) 44 | - [Options](#options) 45 | - [⭐️ Use Hugo extended](#%EF%B8%8F-use-hugo-extended) 46 | - [⭐️ Use the latest version of Hugo](#%EF%B8%8F-use-the-latest-version-of-hugo) 47 | - [Tips](#tips) 48 | - [⭐️ Caching Hugo Modules](#%EF%B8%8F-caching-hugo-modules) 49 | - [⭐️ Read Hugo version from file](#%EF%B8%8F-read-hugo-version-from-file) 50 | - [⭐️ Workflow for autoprefixer and postcss-cli](#%EF%B8%8F-workflow-for-autoprefixer-and-postcss-cli) 51 | - [⭐️ Workflow for asciidoctor](#%EF%B8%8F-workflow-for-asciidoctor) 52 | - [⭐️ Non-ascii Filename](#%EF%B8%8F-non-ascii-filename) 53 | - [CHANGELOG](#changelog) 54 | - [License](#license) 55 | - [About Maintainer](#about-maintainer) 56 | - [Maintainer Notes](#maintainer-notes) 57 | 58 | 59 | 60 | 61 | 62 | ## Getting started 63 | 64 | ### ⭐️ Create your workflow 65 | 66 | An example workflow `.github/workflows/gh-pages.yml` with [GitHub Actions for GitHub Pages]. 67 | For the first deployment, we have to do this operation: [First Deployment with `GITHUB_TOKEN` - peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-first-deployment-with-github_token) 68 | 69 | [GitHub Actions for GitHub Pages]: https://github.com/peaceiris/actions-gh-pages 70 | 71 | [![peaceiris/actions-gh-pages - GitHub](https://gh-card.dev/repos/peaceiris/actions-gh-pages.svg?fullname)](https://github.com/peaceiris/actions-gh-pages) 72 | 73 | ```yaml 74 | name: GitHub Pages 75 | 76 | on: 77 | push: 78 | branches: 79 | - main # Set a branch to deploy 80 | pull_request: 81 | 82 | jobs: 83 | deploy: 84 | runs-on: ubuntu-22.04 85 | concurrency: 86 | group: ${{ github.workflow }}-${{ github.ref }} 87 | steps: 88 | - uses: actions/checkout@v4 89 | with: 90 | submodules: true # Fetch Hugo themes (true OR recursive) 91 | fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod 92 | 93 | - name: Setup Hugo 94 | uses: peaceiris/actions-hugo@v3 95 | with: 96 | hugo-version: '0.119.0' 97 | # extended: true 98 | 99 | - name: Build 100 | run: hugo --minify 101 | 102 | - name: Deploy 103 | uses: peaceiris/actions-gh-pages@v3 104 | if: github.ref == 'refs/heads/main' 105 | with: 106 | github_token: ${{ secrets.GITHUB_TOKEN }} 107 | publish_dir: ./public 108 | ``` 109 | 110 |
111 | Back to TOC ☝️ 112 |
113 | 114 | 115 | 116 | ## Options 117 | 118 | ### ⭐️ Use Hugo extended 119 | 120 | Set `extended: true` to use a Hugo extended version. 121 | 122 | ```yaml 123 | - name: Setup Hugo 124 | uses: peaceiris/actions-hugo@v3 125 | with: 126 | hugo-version: '0.119.0' 127 | extended: true 128 | ``` 129 | 130 | ### ⭐️ Use the latest version of Hugo 131 | 132 | Set `hugo-version: 'latest'` to use the latest version of Hugo. 133 | 134 | ```yaml 135 | - name: Setup Hugo 136 | uses: peaceiris/actions-hugo@v3 137 | with: 138 | hugo-version: 'latest' 139 | ``` 140 | 141 | This action fetches the latest version of Hugo by [hugo | Homebrew Formulae](https://formulae.brew.sh/formula/hugo) 142 | 143 |
144 | Back to TOC ☝️ 145 |
146 | 147 | 148 | 149 | ## Tips 150 | 151 | ### ⭐️ Caching Hugo Modules 152 | 153 | Insert a cache step before site-building as follows. 154 | 155 | First, to maximize compatibility with all Hugo versions, let's define the variable `HUGO_CACHEDIR`: 156 | 157 | ```yaml 158 | # * ... 159 | 160 | jobs: 161 | deploy: 162 | runs-on: ubuntu-22.04 163 | env: 164 | HUGO_CACHEDIR: /tmp/hugo_cache # <- Define the env variable here, so that Hugo's cache dir is now predictible in your workflow and doesn't depend on the Hugo's version you're using. 165 | 166 | # * ... 167 | ``` 168 | 169 | Now, let's add the cache action call just above the _Build_ step: 170 | 171 | ```yaml 172 | - uses: actions/cache@v4 173 | with: 174 | path: ${{ env.HUGO_CACHEDIR }} # <- Use the same env variable just right here 175 | key: ${{ runner.os }}-hugomod-${{ hashFiles('**/go.sum') }} 176 | restore-keys: | 177 | ${{ runner.os }}-hugomod- 178 | 179 | - name: Build 180 | run: hugo --minify 181 | ``` 182 | 183 |
184 | Back to TOC ☝️ 185 |
186 | 187 | ### ⭐️ Read Hugo version from file 188 | 189 | How to sync a Hugo version between a Docker Compose and a GitHub Actions workflow via `.env` file. 190 | 191 | Write a `HUGO_VERSION` to the `.env` file like the following and push it to a remote branch. 192 | 193 | ```sh 194 | HUGO_VERSION=0.119.0 195 | ``` 196 | 197 | Next, add a step to read a Hugo version from the `.env` file. 198 | 199 | ```yaml 200 | - name: Read .env 201 | id: hugo-version 202 | run: | 203 | . ./.env 204 | echo "HUGO_VERSION=${HUGO_VERSION}" >> "${GITHUB_OUTPUT}" 205 | 206 | - name: Setup Hugo 207 | uses: peaceiris/actions-hugo@v3 208 | with: 209 | hugo-version: '${{ steps.hugo-version.outputs.HUGO_VERSION }}' 210 | extended: true 211 | ``` 212 | 213 | Here is a `docker-compose.yml` example. 214 | 215 | ```yaml 216 | version: '3' 217 | 218 | services: 219 | hugo: 220 | container_name: hugo 221 | image: "peaceiris/hugo:v${HUGO_VERSION}" 222 | # image: peaceiris/hugo:v${HUGO_VERSION}-mod # Hugo Modules 223 | # image: peaceiris/hugo:v${HUGO_VERSION}-full # Hugo Modules and Node.js 224 | ports: 225 | - 1313:1313 226 | volumes: 227 | - ${PWD}:/src 228 | command: 229 | - server 230 | - --bind=0.0.0.0 231 | - --buildDrafts 232 | ``` 233 | 234 | The alpine base Hugo Docker image is provided on the following repository. 235 | 236 | > [peaceiris/hugo-extended-docker: Hugo alpine base Docker image (Hugo extended and Hugo Modules)](https://github.com/peaceiris/hugo-extended-docker) 237 | 238 |
239 | Back to TOC ☝️ 240 |
241 | 242 | ### ⭐️ Workflow for autoprefixer and postcss-cli 243 | 244 | Here is an example workflow for the [google/docsy] Hugo theme. 245 | This theme needs `autoprefixer` and `postcss-cli` to build a project. 246 | The following workflow is tested with [google/docsy-example]. 247 | 248 | [google/docsy]: https://github.com/google/docsy 249 | [google/docsy-example]: https://github.com/google/docsy-example 250 | 251 | A workflow for the Hugo Babel pipeline is also the same as follows. 252 | 253 | ```yaml 254 | name: GitHub Pages 255 | 256 | on: 257 | push: 258 | branches: 259 | - master # Set a branch to deploy 260 | pull_request: 261 | 262 | jobs: 263 | deploy: 264 | runs-on: ubuntu-22.04 265 | concurrency: 266 | group: ${{ github.workflow }}-${{ github.ref }} 267 | steps: 268 | - uses: actions/checkout@4 269 | with: 270 | fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod 271 | 272 | - name: Setup Hugo 273 | uses: peaceiris/actions-hugo@v3 274 | with: 275 | hugo-version: '0.119.0' 276 | extended: true 277 | 278 | - uses: actions/setup-node@v4 279 | with: 280 | node-version: '20' 281 | cache: 'npm' 282 | # The action defaults to search for the dependency file (package-lock.json, 283 | # npm-shrinkwrap.json or yarn.lock) in the repository root, and uses its 284 | # hash as a part of the cache key. 285 | # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-data 286 | cache-dependency-path: '**/package-lock.json' 287 | 288 | - run: npm ci 289 | - run: hugo --minify 290 | 291 | - name: Deploy 292 | uses: peaceiris/actions-gh-pages@v3 293 | if: github.ref == 'refs/heads/master' 294 | with: 295 | github_token: ${{ secrets.GITHUB_TOKEN }} 296 | ``` 297 | 298 |
299 | Back to TOC ☝️ 300 |
301 | 302 | ### ⭐️ Workflow for asciidoctor 303 | 304 | Here is an example workflow for a Hugo project using `asciidoctor`. 305 | 306 | ```yaml 307 | name: GitHub Pages 308 | 309 | on: 310 | push: 311 | branches: 312 | - main # Set a branch to deploy 313 | pull_request: 314 | 315 | jobs: 316 | deploy: 317 | runs-on: ubuntu-22.04 318 | concurrency: 319 | group: ${{ github.workflow }}-${{ github.ref }} 320 | steps: 321 | - uses: actions/checkout@v4 322 | with: 323 | submodules: true # Fetch Hugo themes (true OR recursive) 324 | fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod 325 | 326 | - name: Setup Hugo 327 | uses: peaceiris/actions-hugo@v3 328 | with: 329 | hugo-version: '0.119.0' 330 | extended: true 331 | 332 | - name: Setup Ruby 333 | uses: ruby/setup-ruby@v1 334 | with: 335 | ruby-version: 3.2 336 | 337 | - run: gem install asciidoctor 338 | 339 | - name: Run Hugo 340 | run: | 341 | alias asciidoctor="asciidoctor --attribute=experimental=true --attribute=icons=font" 342 | hugo --minify 343 | 344 | - name: Deploy 345 | uses: peaceiris/actions-gh-pages@v3 346 | if: github.ref == 'refs/heads/main' 347 | with: 348 | github_token: ${{ secrets.GITHUB_TOKEN }} 349 | ``` 350 | 351 |
352 | Back to TOC ☝️ 353 |
354 | 355 | ### ⭐️ Non-ascii Filename 356 | 357 | cf. [Gitinfo fails on unicode filename · Issue #3071 · gohugoio/hugo](https://github.com/gohugoio/hugo/issues/3071) 358 | 359 | ```yaml 360 | name: GitHub Pages 361 | 362 | on: 363 | push: 364 | branches: 365 | - main 366 | 367 | jobs: 368 | deploy: 369 | runs-on: ubuntu-22.04 370 | concurrency: 371 | group: ${{ github.workflow }}-${{ github.ref }} 372 | steps: 373 | - uses: actions/checkout@v4 374 | with: 375 | fetch-depth: 0 376 | 377 | - name: Disable quotePath 378 | run: git config core.quotePath false 379 | 380 | - name: Setup Hugo 381 | uses: peaceiris/actions-hugo@v3 382 | with: 383 | hugo-version: '0.119.0' 384 | ``` 385 | 386 |
387 | Back to TOC ☝️ 388 |
389 | 390 | 391 | 392 | ## CHANGELOG 393 | 394 | - [CHANGELOG.md](CHANGELOG.md) 395 | 396 | 397 | 398 | ## License 399 | 400 | - [MIT License - peaceiris/actions-hugo] 401 | 402 | [MIT License - peaceiris/actions-hugo]: https://github.com/peaceiris/actions-hugo/blob/main/LICENSE 403 | 404 | 405 | 406 | ## About Maintainer 407 | 408 | - [peaceiris homepage](https://peaceiris.com/) 409 | - [GitHub Action Hero: Shohei Ueda - The GitHub Blog](https://github.blog/2020-03-22-github-action-hero-shohei-ueda/) 410 | 411 | 412 | 413 | ## Maintainer Notes 414 | 415 | Run `npm test` on a Docker container. 416 | 417 | ```sh 418 | # On container 419 | make build 420 | make all 421 | 422 | # Release script on host 423 | ./release.sh 424 | ``` 425 | 426 | 427 | 428 |
429 | Back to TOC ☝️ 430 |
431 | -------------------------------------------------------------------------------- /__tests__/data/github.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/42329375", 3 | "assets_url": "https://api.github.com/repos/gohugoio/hugo/releases/42329375/assets", 4 | "upload_url": "https://uploads.github.com/repos/gohugoio/hugo/releases/42329375/assets{?name,label}", 5 | "html_url": "https://github.com/gohugoio/hugo/releases/tag/v0.83.1", 6 | "id": 42329375, 7 | "author": { 8 | "login": "bep", 9 | "id": 394382, 10 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 11 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 12 | "gravatar_id": "", 13 | "url": "https://api.github.com/users/bep", 14 | "html_url": "https://github.com/bep", 15 | "followers_url": "https://api.github.com/users/bep/followers", 16 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 17 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 18 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 19 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 20 | "organizations_url": "https://api.github.com/users/bep/orgs", 21 | "repos_url": "https://api.github.com/users/bep/repos", 22 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 23 | "received_events_url": "https://api.github.com/users/bep/received_events", 24 | "type": "User", 25 | "site_admin": false 26 | }, 27 | "node_id": "MDc6UmVsZWFzZTQyMzI5Mzc1", 28 | "tag_name": "v0.83.1", 29 | "target_commitish": "master", 30 | "name": "v0.83.1", 31 | "draft": false, 32 | "prerelease": false, 33 | "created_at": "2021-05-02T14:38:02Z", 34 | "published_at": "2021-05-02T15:29:26Z", 35 | "assets": [ 36 | { 37 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229511", 38 | "id": 36229511, 39 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTEx", 40 | "name": "hugo_0.83.1_checksums.txt", 41 | "label": "", 42 | "uploader": { 43 | "login": "bep", 44 | "id": 394382, 45 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 46 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 47 | "gravatar_id": "", 48 | "url": "https://api.github.com/users/bep", 49 | "html_url": "https://github.com/bep", 50 | "followers_url": "https://api.github.com/users/bep/followers", 51 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 52 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 53 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 54 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 55 | "organizations_url": "https://api.github.com/users/bep/orgs", 56 | "repos_url": "https://api.github.com/users/bep/repos", 57 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 58 | "received_events_url": "https://api.github.com/users/bep/received_events", 59 | "type": "User", 60 | "site_admin": false 61 | }, 62 | "content_type": "text/plain; charset=utf-8", 63 | "state": "uploaded", 64 | "size": 2856, 65 | "download_count": 341, 66 | "created_at": "2021-05-02T15:28:32Z", 67 | "updated_at": "2021-05-02T15:28:32Z", 68 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_checksums.txt" 69 | }, 70 | { 71 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229523", 72 | "id": 36229523, 73 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTIz", 74 | "name": "hugo_0.83.1_DragonFlyBSD-64bit.tar.gz", 75 | "label": "", 76 | "uploader": { 77 | "login": "bep", 78 | "id": 394382, 79 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 80 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 81 | "gravatar_id": "", 82 | "url": "https://api.github.com/users/bep", 83 | "html_url": "https://github.com/bep", 84 | "followers_url": "https://api.github.com/users/bep/followers", 85 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 86 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 87 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 88 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 89 | "organizations_url": "https://api.github.com/users/bep/orgs", 90 | "repos_url": "https://api.github.com/users/bep/repos", 91 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 92 | "received_events_url": "https://api.github.com/users/bep/received_events", 93 | "type": "User", 94 | "site_admin": false 95 | }, 96 | "content_type": "application/gzip", 97 | "state": "uploaded", 98 | "size": 13893968, 99 | "download_count": 87, 100 | "created_at": "2021-05-02T15:28:35Z", 101 | "updated_at": "2021-05-02T15:28:35Z", 102 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_DragonFlyBSD-64bit.tar.gz" 103 | }, 104 | { 105 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229518", 106 | "id": 36229518, 107 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTE4", 108 | "name": "hugo_0.83.1_FreeBSD-32bit.tar.gz", 109 | "label": "", 110 | "uploader": { 111 | "login": "bep", 112 | "id": 394382, 113 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 114 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 115 | "gravatar_id": "", 116 | "url": "https://api.github.com/users/bep", 117 | "html_url": "https://github.com/bep", 118 | "followers_url": "https://api.github.com/users/bep/followers", 119 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 120 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 121 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 122 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 123 | "organizations_url": "https://api.github.com/users/bep/orgs", 124 | "repos_url": "https://api.github.com/users/bep/repos", 125 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 126 | "received_events_url": "https://api.github.com/users/bep/received_events", 127 | "type": "User", 128 | "site_admin": false 129 | }, 130 | "content_type": "application/gzip", 131 | "state": "uploaded", 132 | "size": 12759488, 133 | "download_count": 67, 134 | "created_at": "2021-05-02T15:28:33Z", 135 | "updated_at": "2021-05-02T15:28:34Z", 136 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_FreeBSD-32bit.tar.gz" 137 | }, 138 | { 139 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229525", 140 | "id": 36229525, 141 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTI1", 142 | "name": "hugo_0.83.1_FreeBSD-64bit.tar.gz", 143 | "label": "", 144 | "uploader": { 145 | "login": "bep", 146 | "id": 394382, 147 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 148 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 149 | "gravatar_id": "", 150 | "url": "https://api.github.com/users/bep", 151 | "html_url": "https://github.com/bep", 152 | "followers_url": "https://api.github.com/users/bep/followers", 153 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 154 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 155 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 156 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 157 | "organizations_url": "https://api.github.com/users/bep/orgs", 158 | "repos_url": "https://api.github.com/users/bep/repos", 159 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 160 | "received_events_url": "https://api.github.com/users/bep/received_events", 161 | "type": "User", 162 | "site_admin": false 163 | }, 164 | "content_type": "application/gzip", 165 | "state": "uploaded", 166 | "size": 13901454, 167 | "download_count": 91, 168 | "created_at": "2021-05-02T15:28:35Z", 169 | "updated_at": "2021-05-02T15:28:36Z", 170 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_FreeBSD-64bit.tar.gz" 171 | }, 172 | { 173 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229519", 174 | "id": 36229519, 175 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTE5", 176 | "name": "hugo_0.83.1_FreeBSD-ARM.tar.gz", 177 | "label": "", 178 | "uploader": { 179 | "login": "bep", 180 | "id": 394382, 181 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 182 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 183 | "gravatar_id": "", 184 | "url": "https://api.github.com/users/bep", 185 | "html_url": "https://github.com/bep", 186 | "followers_url": "https://api.github.com/users/bep/followers", 187 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 188 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 189 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 190 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 191 | "organizations_url": "https://api.github.com/users/bep/orgs", 192 | "repos_url": "https://api.github.com/users/bep/repos", 193 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 194 | "received_events_url": "https://api.github.com/users/bep/received_events", 195 | "type": "User", 196 | "site_admin": false 197 | }, 198 | "content_type": "application/gzip", 199 | "state": "uploaded", 200 | "size": 13014181, 201 | "download_count": 66, 202 | "created_at": "2021-05-02T15:28:34Z", 203 | "updated_at": "2021-05-02T15:28:35Z", 204 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_FreeBSD-ARM.tar.gz" 205 | }, 206 | { 207 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229509", 208 | "id": 36229509, 209 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTA5", 210 | "name": "hugo_0.83.1_FreeBSD-ARM64.tar.gz", 211 | "label": "", 212 | "uploader": { 213 | "login": "bep", 214 | "id": 394382, 215 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 216 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 217 | "gravatar_id": "", 218 | "url": "https://api.github.com/users/bep", 219 | "html_url": "https://github.com/bep", 220 | "followers_url": "https://api.github.com/users/bep/followers", 221 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 222 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 223 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 224 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 225 | "organizations_url": "https://api.github.com/users/bep/orgs", 226 | "repos_url": "https://api.github.com/users/bep/repos", 227 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 228 | "received_events_url": "https://api.github.com/users/bep/received_events", 229 | "type": "User", 230 | "site_admin": false 231 | }, 232 | "content_type": "application/gzip", 233 | "state": "uploaded", 234 | "size": 12566871, 235 | "download_count": 63, 236 | "created_at": "2021-05-02T15:28:32Z", 237 | "updated_at": "2021-05-02T15:28:32Z", 238 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_FreeBSD-ARM64.tar.gz" 239 | }, 240 | { 241 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229536", 242 | "id": 36229536, 243 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTM2", 244 | "name": "hugo_0.83.1_Linux-32bit.deb", 245 | "label": "", 246 | "uploader": { 247 | "login": "bep", 248 | "id": 394382, 249 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 250 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 251 | "gravatar_id": "", 252 | "url": "https://api.github.com/users/bep", 253 | "html_url": "https://github.com/bep", 254 | "followers_url": "https://api.github.com/users/bep/followers", 255 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 256 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 257 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 258 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 259 | "organizations_url": "https://api.github.com/users/bep/orgs", 260 | "repos_url": "https://api.github.com/users/bep/repos", 261 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 262 | "received_events_url": "https://api.github.com/users/bep/received_events", 263 | "type": "User", 264 | "site_admin": false 265 | }, 266 | "content_type": "application/x-debian-package", 267 | "state": "uploaded", 268 | "size": 12803672, 269 | "download_count": 93, 270 | "created_at": "2021-05-02T15:28:38Z", 271 | "updated_at": "2021-05-02T15:28:39Z", 272 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Linux-32bit.deb" 273 | }, 274 | { 275 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229524", 276 | "id": 36229524, 277 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTI0", 278 | "name": "hugo_0.83.1_Linux-32bit.tar.gz", 279 | "label": "", 280 | "uploader": { 281 | "login": "bep", 282 | "id": 394382, 283 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 284 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 285 | "gravatar_id": "", 286 | "url": "https://api.github.com/users/bep", 287 | "html_url": "https://github.com/bep", 288 | "followers_url": "https://api.github.com/users/bep/followers", 289 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 290 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 291 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 292 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 293 | "organizations_url": "https://api.github.com/users/bep/orgs", 294 | "repos_url": "https://api.github.com/users/bep/repos", 295 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 296 | "received_events_url": "https://api.github.com/users/bep/received_events", 297 | "type": "User", 298 | "site_admin": false 299 | }, 300 | "content_type": "application/gzip", 301 | "state": "uploaded", 302 | "size": 12778919, 303 | "download_count": 104, 304 | "created_at": "2021-05-02T15:28:35Z", 305 | "updated_at": "2021-05-02T15:28:35Z", 306 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Linux-32bit.tar.gz" 307 | }, 308 | { 309 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229534", 310 | "id": 36229534, 311 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTM0", 312 | "name": "hugo_0.83.1_Linux-64bit.deb", 313 | "label": "", 314 | "uploader": { 315 | "login": "bep", 316 | "id": 394382, 317 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 318 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 319 | "gravatar_id": "", 320 | "url": "https://api.github.com/users/bep", 321 | "html_url": "https://github.com/bep", 322 | "followers_url": "https://api.github.com/users/bep/followers", 323 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 324 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 325 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 326 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 327 | "organizations_url": "https://api.github.com/users/bep/orgs", 328 | "repos_url": "https://api.github.com/users/bep/repos", 329 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 330 | "received_events_url": "https://api.github.com/users/bep/received_events", 331 | "type": "User", 332 | "site_admin": false 333 | }, 334 | "content_type": "application/x-debian-package", 335 | "state": "uploaded", 336 | "size": 13945990, 337 | "download_count": 1754, 338 | "created_at": "2021-05-02T15:28:38Z", 339 | "updated_at": "2021-05-02T15:28:38Z", 340 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Linux-64bit.deb" 341 | }, 342 | { 343 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229515", 344 | "id": 36229515, 345 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTE1", 346 | "name": "hugo_0.83.1_Linux-64bit.tar.gz", 347 | "label": "", 348 | "uploader": { 349 | "login": "bep", 350 | "id": 394382, 351 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 352 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 353 | "gravatar_id": "", 354 | "url": "https://api.github.com/users/bep", 355 | "html_url": "https://github.com/bep", 356 | "followers_url": "https://api.github.com/users/bep/followers", 357 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 358 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 359 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 360 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 361 | "organizations_url": "https://api.github.com/users/bep/orgs", 362 | "repos_url": "https://api.github.com/users/bep/repos", 363 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 364 | "received_events_url": "https://api.github.com/users/bep/received_events", 365 | "type": "User", 366 | "site_admin": false 367 | }, 368 | "content_type": "application/gzip", 369 | "state": "uploaded", 370 | "size": 13899692, 371 | "download_count": 15690, 372 | "created_at": "2021-05-02T15:28:33Z", 373 | "updated_at": "2021-05-02T15:28:33Z", 374 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Linux-64bit.tar.gz" 375 | }, 376 | { 377 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229535", 378 | "id": 36229535, 379 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTM1", 380 | "name": "hugo_0.83.1_Linux-ARM.deb", 381 | "label": "", 382 | "uploader": { 383 | "login": "bep", 384 | "id": 394382, 385 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 386 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 387 | "gravatar_id": "", 388 | "url": "https://api.github.com/users/bep", 389 | "html_url": "https://github.com/bep", 390 | "followers_url": "https://api.github.com/users/bep/followers", 391 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 392 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 393 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 394 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 395 | "organizations_url": "https://api.github.com/users/bep/orgs", 396 | "repos_url": "https://api.github.com/users/bep/repos", 397 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 398 | "received_events_url": "https://api.github.com/users/bep/received_events", 399 | "type": "User", 400 | "site_admin": false 401 | }, 402 | "content_type": "application/x-debian-package", 403 | "state": "uploaded", 404 | "size": 13031694, 405 | "download_count": 115, 406 | "created_at": "2021-05-02T15:28:38Z", 407 | "updated_at": "2021-05-02T15:28:38Z", 408 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Linux-ARM.deb" 409 | }, 410 | { 411 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229521", 412 | "id": 36229521, 413 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTIx", 414 | "name": "hugo_0.83.1_Linux-ARM.tar.gz", 415 | "label": "", 416 | "uploader": { 417 | "login": "bep", 418 | "id": 394382, 419 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 420 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 421 | "gravatar_id": "", 422 | "url": "https://api.github.com/users/bep", 423 | "html_url": "https://github.com/bep", 424 | "followers_url": "https://api.github.com/users/bep/followers", 425 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 426 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 427 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 428 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 429 | "organizations_url": "https://api.github.com/users/bep/orgs", 430 | "repos_url": "https://api.github.com/users/bep/repos", 431 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 432 | "received_events_url": "https://api.github.com/users/bep/received_events", 433 | "type": "User", 434 | "site_admin": false 435 | }, 436 | "content_type": "application/gzip", 437 | "state": "uploaded", 438 | "size": 13011706, 439 | "download_count": 85, 440 | "created_at": "2021-05-02T15:28:34Z", 441 | "updated_at": "2021-05-02T15:28:35Z", 442 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Linux-ARM.tar.gz" 443 | }, 444 | { 445 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229532", 446 | "id": 36229532, 447 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTMy", 448 | "name": "hugo_0.83.1_Linux-ARM64.deb", 449 | "label": "", 450 | "uploader": { 451 | "login": "bep", 452 | "id": 394382, 453 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 454 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 455 | "gravatar_id": "", 456 | "url": "https://api.github.com/users/bep", 457 | "html_url": "https://github.com/bep", 458 | "followers_url": "https://api.github.com/users/bep/followers", 459 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 460 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 461 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 462 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 463 | "organizations_url": "https://api.github.com/users/bep/orgs", 464 | "repos_url": "https://api.github.com/users/bep/repos", 465 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 466 | "received_events_url": "https://api.github.com/users/bep/received_events", 467 | "type": "User", 468 | "site_admin": false 469 | }, 470 | "content_type": "application/x-debian-package", 471 | "state": "uploaded", 472 | "size": 12672516, 473 | "download_count": 154, 474 | "created_at": "2021-05-02T15:28:37Z", 475 | "updated_at": "2021-05-02T15:28:38Z", 476 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Linux-ARM64.deb" 477 | }, 478 | { 479 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229538", 480 | "id": 36229538, 481 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTM4", 482 | "name": "hugo_0.83.1_Linux-ARM64.tar.gz", 483 | "label": "", 484 | "uploader": { 485 | "login": "bep", 486 | "id": 394382, 487 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 488 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 489 | "gravatar_id": "", 490 | "url": "https://api.github.com/users/bep", 491 | "html_url": "https://github.com/bep", 492 | "followers_url": "https://api.github.com/users/bep/followers", 493 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 494 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 495 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 496 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 497 | "organizations_url": "https://api.github.com/users/bep/orgs", 498 | "repos_url": "https://api.github.com/users/bep/repos", 499 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 500 | "received_events_url": "https://api.github.com/users/bep/received_events", 501 | "type": "User", 502 | "site_admin": false 503 | }, 504 | "content_type": "application/gzip", 505 | "state": "uploaded", 506 | "size": 12642750, 507 | "download_count": 160, 508 | "created_at": "2021-05-02T15:28:39Z", 509 | "updated_at": "2021-05-02T15:28:39Z", 510 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Linux-ARM64.tar.gz" 511 | }, 512 | { 513 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229520", 514 | "id": 36229520, 515 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTIw", 516 | "name": "hugo_0.83.1_macOS-64bit.tar.gz", 517 | "label": "", 518 | "uploader": { 519 | "login": "bep", 520 | "id": 394382, 521 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 522 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 523 | "gravatar_id": "", 524 | "url": "https://api.github.com/users/bep", 525 | "html_url": "https://github.com/bep", 526 | "followers_url": "https://api.github.com/users/bep/followers", 527 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 528 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 529 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 530 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 531 | "organizations_url": "https://api.github.com/users/bep/orgs", 532 | "repos_url": "https://api.github.com/users/bep/repos", 533 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 534 | "received_events_url": "https://api.github.com/users/bep/received_events", 535 | "type": "User", 536 | "site_admin": false 537 | }, 538 | "content_type": "application/gzip", 539 | "state": "uploaded", 540 | "size": 14424026, 541 | "download_count": 515, 542 | "created_at": "2021-05-02T15:28:34Z", 543 | "updated_at": "2021-05-02T15:28:35Z", 544 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_macOS-64bit.tar.gz" 545 | }, 546 | { 547 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229529", 548 | "id": 36229529, 549 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTI5", 550 | "name": "hugo_0.83.1_macOS-ARM64.tar.gz", 551 | "label": "", 552 | "uploader": { 553 | "login": "bep", 554 | "id": 394382, 555 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 556 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 557 | "gravatar_id": "", 558 | "url": "https://api.github.com/users/bep", 559 | "html_url": "https://github.com/bep", 560 | "followers_url": "https://api.github.com/users/bep/followers", 561 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 562 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 563 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 564 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 565 | "organizations_url": "https://api.github.com/users/bep/orgs", 566 | "repos_url": "https://api.github.com/users/bep/repos", 567 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 568 | "received_events_url": "https://api.github.com/users/bep/received_events", 569 | "type": "User", 570 | "site_admin": false 571 | }, 572 | "content_type": "application/gzip", 573 | "state": "uploaded", 574 | "size": 14100428, 575 | "download_count": 120, 576 | "created_at": "2021-05-02T15:28:36Z", 577 | "updated_at": "2021-05-02T15:28:37Z", 578 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_macOS-ARM64.tar.gz" 579 | }, 580 | { 581 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229514", 582 | "id": 36229514, 583 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTE0", 584 | "name": "hugo_0.83.1_NetBSD-32bit.tar.gz", 585 | "label": "", 586 | "uploader": { 587 | "login": "bep", 588 | "id": 394382, 589 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 590 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 591 | "gravatar_id": "", 592 | "url": "https://api.github.com/users/bep", 593 | "html_url": "https://github.com/bep", 594 | "followers_url": "https://api.github.com/users/bep/followers", 595 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 596 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 597 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 598 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 599 | "organizations_url": "https://api.github.com/users/bep/orgs", 600 | "repos_url": "https://api.github.com/users/bep/repos", 601 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 602 | "received_events_url": "https://api.github.com/users/bep/received_events", 603 | "type": "User", 604 | "site_admin": false 605 | }, 606 | "content_type": "application/gzip", 607 | "state": "uploaded", 608 | "size": 12750985, 609 | "download_count": 62, 610 | "created_at": "2021-05-02T15:28:33Z", 611 | "updated_at": "2021-05-02T15:28:33Z", 612 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_NetBSD-32bit.tar.gz" 613 | }, 614 | { 615 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229526", 616 | "id": 36229526, 617 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTI2", 618 | "name": "hugo_0.83.1_NetBSD-64bit.tar.gz", 619 | "label": "", 620 | "uploader": { 621 | "login": "bep", 622 | "id": 394382, 623 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 624 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 625 | "gravatar_id": "", 626 | "url": "https://api.github.com/users/bep", 627 | "html_url": "https://github.com/bep", 628 | "followers_url": "https://api.github.com/users/bep/followers", 629 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 630 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 631 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 632 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 633 | "organizations_url": "https://api.github.com/users/bep/orgs", 634 | "repos_url": "https://api.github.com/users/bep/repos", 635 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 636 | "received_events_url": "https://api.github.com/users/bep/received_events", 637 | "type": "User", 638 | "site_admin": false 639 | }, 640 | "content_type": "application/gzip", 641 | "state": "uploaded", 642 | "size": 13890041, 643 | "download_count": 63, 644 | "created_at": "2021-05-02T15:28:36Z", 645 | "updated_at": "2021-05-02T15:28:36Z", 646 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_NetBSD-64bit.tar.gz" 647 | }, 648 | { 649 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229512", 650 | "id": 36229512, 651 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTEy", 652 | "name": "hugo_0.83.1_NetBSD-ARM.tar.gz", 653 | "label": "", 654 | "uploader": { 655 | "login": "bep", 656 | "id": 394382, 657 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 658 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 659 | "gravatar_id": "", 660 | "url": "https://api.github.com/users/bep", 661 | "html_url": "https://github.com/bep", 662 | "followers_url": "https://api.github.com/users/bep/followers", 663 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 664 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 665 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 666 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 667 | "organizations_url": "https://api.github.com/users/bep/orgs", 668 | "repos_url": "https://api.github.com/users/bep/repos", 669 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 670 | "received_events_url": "https://api.github.com/users/bep/received_events", 671 | "type": "User", 672 | "site_admin": false 673 | }, 674 | "content_type": "application/gzip", 675 | "state": "uploaded", 676 | "size": 13002251, 677 | "download_count": 64, 678 | "created_at": "2021-05-02T15:28:32Z", 679 | "updated_at": "2021-05-02T15:28:33Z", 680 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_NetBSD-ARM.tar.gz" 681 | }, 682 | { 683 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229516", 684 | "id": 36229516, 685 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTE2", 686 | "name": "hugo_0.83.1_OpenBSD-32bit.tar.gz", 687 | "label": "", 688 | "uploader": { 689 | "login": "bep", 690 | "id": 394382, 691 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 692 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 693 | "gravatar_id": "", 694 | "url": "https://api.github.com/users/bep", 695 | "html_url": "https://github.com/bep", 696 | "followers_url": "https://api.github.com/users/bep/followers", 697 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 698 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 699 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 700 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 701 | "organizations_url": "https://api.github.com/users/bep/orgs", 702 | "repos_url": "https://api.github.com/users/bep/repos", 703 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 704 | "received_events_url": "https://api.github.com/users/bep/received_events", 705 | "type": "User", 706 | "site_admin": false 707 | }, 708 | "content_type": "application/gzip", 709 | "state": "uploaded", 710 | "size": 12753247, 711 | "download_count": 64, 712 | "created_at": "2021-05-02T15:28:33Z", 713 | "updated_at": "2021-05-02T15:28:34Z", 714 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_OpenBSD-32bit.tar.gz" 715 | }, 716 | { 717 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229522", 718 | "id": 36229522, 719 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTIy", 720 | "name": "hugo_0.83.1_OpenBSD-64bit.tar.gz", 721 | "label": "", 722 | "uploader": { 723 | "login": "bep", 724 | "id": 394382, 725 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 726 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 727 | "gravatar_id": "", 728 | "url": "https://api.github.com/users/bep", 729 | "html_url": "https://github.com/bep", 730 | "followers_url": "https://api.github.com/users/bep/followers", 731 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 732 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 733 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 734 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 735 | "organizations_url": "https://api.github.com/users/bep/orgs", 736 | "repos_url": "https://api.github.com/users/bep/repos", 737 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 738 | "received_events_url": "https://api.github.com/users/bep/received_events", 739 | "type": "User", 740 | "site_admin": false 741 | }, 742 | "content_type": "application/gzip", 743 | "state": "uploaded", 744 | "size": 13901610, 745 | "download_count": 69, 746 | "created_at": "2021-05-02T15:28:35Z", 747 | "updated_at": "2021-05-02T15:28:35Z", 748 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_OpenBSD-64bit.tar.gz" 749 | }, 750 | { 751 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229528", 752 | "id": 36229528, 753 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTI4", 754 | "name": "hugo_0.83.1_OpenBSD-ARM.tar.gz", 755 | "label": "", 756 | "uploader": { 757 | "login": "bep", 758 | "id": 394382, 759 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 760 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 761 | "gravatar_id": "", 762 | "url": "https://api.github.com/users/bep", 763 | "html_url": "https://github.com/bep", 764 | "followers_url": "https://api.github.com/users/bep/followers", 765 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 766 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 767 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 768 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 769 | "organizations_url": "https://api.github.com/users/bep/orgs", 770 | "repos_url": "https://api.github.com/users/bep/repos", 771 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 772 | "received_events_url": "https://api.github.com/users/bep/received_events", 773 | "type": "User", 774 | "site_admin": false 775 | }, 776 | "content_type": "application/gzip", 777 | "state": "uploaded", 778 | "size": 13001146, 779 | "download_count": 65, 780 | "created_at": "2021-05-02T15:28:36Z", 781 | "updated_at": "2021-05-02T15:28:37Z", 782 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_OpenBSD-ARM.tar.gz" 783 | }, 784 | { 785 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229527", 786 | "id": 36229527, 787 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTI3", 788 | "name": "hugo_0.83.1_OpenBSD-ARM64.tar.gz", 789 | "label": "", 790 | "uploader": { 791 | "login": "bep", 792 | "id": 394382, 793 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 794 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 795 | "gravatar_id": "", 796 | "url": "https://api.github.com/users/bep", 797 | "html_url": "https://github.com/bep", 798 | "followers_url": "https://api.github.com/users/bep/followers", 799 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 800 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 801 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 802 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 803 | "organizations_url": "https://api.github.com/users/bep/orgs", 804 | "repos_url": "https://api.github.com/users/bep/repos", 805 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 806 | "received_events_url": "https://api.github.com/users/bep/received_events", 807 | "type": "User", 808 | "site_admin": false 809 | }, 810 | "content_type": "application/gzip", 811 | "state": "uploaded", 812 | "size": 12566925, 813 | "download_count": 59, 814 | "created_at": "2021-05-02T15:28:36Z", 815 | "updated_at": "2021-05-02T15:28:40Z", 816 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_OpenBSD-ARM64.tar.gz" 817 | }, 818 | { 819 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229517", 820 | "id": 36229517, 821 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTE3", 822 | "name": "hugo_0.83.1_Windows-32bit.zip", 823 | "label": "", 824 | "uploader": { 825 | "login": "bep", 826 | "id": 394382, 827 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 828 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 829 | "gravatar_id": "", 830 | "url": "https://api.github.com/users/bep", 831 | "html_url": "https://github.com/bep", 832 | "followers_url": "https://api.github.com/users/bep/followers", 833 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 834 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 835 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 836 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 837 | "organizations_url": "https://api.github.com/users/bep/orgs", 838 | "repos_url": "https://api.github.com/users/bep/repos", 839 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 840 | "received_events_url": "https://api.github.com/users/bep/received_events", 841 | "type": "User", 842 | "site_admin": false 843 | }, 844 | "content_type": "application/zip", 845 | "state": "uploaded", 846 | "size": 12809641, 847 | "download_count": 276, 848 | "created_at": "2021-05-02T15:28:33Z", 849 | "updated_at": "2021-05-02T15:28:34Z", 850 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Windows-32bit.zip" 851 | }, 852 | { 853 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229533", 854 | "id": 36229533, 855 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTMz", 856 | "name": "hugo_0.83.1_Windows-64bit.zip", 857 | "label": "", 858 | "uploader": { 859 | "login": "bep", 860 | "id": 394382, 861 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 862 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 863 | "gravatar_id": "", 864 | "url": "https://api.github.com/users/bep", 865 | "html_url": "https://github.com/bep", 866 | "followers_url": "https://api.github.com/users/bep/followers", 867 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 868 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 869 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 870 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 871 | "organizations_url": "https://api.github.com/users/bep/orgs", 872 | "repos_url": "https://api.github.com/users/bep/repos", 873 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 874 | "received_events_url": "https://api.github.com/users/bep/received_events", 875 | "type": "User", 876 | "site_admin": false 877 | }, 878 | "content_type": "application/zip", 879 | "state": "uploaded", 880 | "size": 13982494, 881 | "download_count": 5215, 882 | "created_at": "2021-05-02T15:28:37Z", 883 | "updated_at": "2021-05-02T15:28:38Z", 884 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_0.83.1_Windows-64bit.zip" 885 | }, 886 | { 887 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229537", 888 | "id": 36229537, 889 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTM3", 890 | "name": "hugo_extended_0.83.1_Linux-64bit.deb", 891 | "label": "", 892 | "uploader": { 893 | "login": "bep", 894 | "id": 394382, 895 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 896 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 897 | "gravatar_id": "", 898 | "url": "https://api.github.com/users/bep", 899 | "html_url": "https://github.com/bep", 900 | "followers_url": "https://api.github.com/users/bep/followers", 901 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 902 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 903 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 904 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 905 | "organizations_url": "https://api.github.com/users/bep/orgs", 906 | "repos_url": "https://api.github.com/users/bep/repos", 907 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 908 | "received_events_url": "https://api.github.com/users/bep/received_events", 909 | "type": "User", 910 | "site_admin": false 911 | }, 912 | "content_type": "application/x-debian-package", 913 | "state": "uploaded", 914 | "size": 15152386, 915 | "download_count": 2274, 916 | "created_at": "2021-05-02T15:28:39Z", 917 | "updated_at": "2021-05-02T15:28:39Z", 918 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_extended_0.83.1_Linux-64bit.deb" 919 | }, 920 | { 921 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229531", 922 | "id": 36229531, 923 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTMx", 924 | "name": "hugo_extended_0.83.1_Linux-64bit.tar.gz", 925 | "label": "", 926 | "uploader": { 927 | "login": "bep", 928 | "id": 394382, 929 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 930 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 931 | "gravatar_id": "", 932 | "url": "https://api.github.com/users/bep", 933 | "html_url": "https://github.com/bep", 934 | "followers_url": "https://api.github.com/users/bep/followers", 935 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 936 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 937 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 938 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 939 | "organizations_url": "https://api.github.com/users/bep/orgs", 940 | "repos_url": "https://api.github.com/users/bep/repos", 941 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 942 | "received_events_url": "https://api.github.com/users/bep/received_events", 943 | "type": "User", 944 | "site_admin": false 945 | }, 946 | "content_type": "application/gzip", 947 | "state": "uploaded", 948 | "size": 15104310, 949 | "download_count": 22650, 950 | "created_at": "2021-05-02T15:28:37Z", 951 | "updated_at": "2021-05-02T15:28:37Z", 952 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_extended_0.83.1_Linux-64bit.tar.gz" 953 | }, 954 | { 955 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229513", 956 | "id": 36229513, 957 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTEz", 958 | "name": "hugo_extended_0.83.1_macOS-64bit.tar.gz", 959 | "label": "", 960 | "uploader": { 961 | "login": "bep", 962 | "id": 394382, 963 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 964 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 965 | "gravatar_id": "", 966 | "url": "https://api.github.com/users/bep", 967 | "html_url": "https://github.com/bep", 968 | "followers_url": "https://api.github.com/users/bep/followers", 969 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 970 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 971 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 972 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 973 | "organizations_url": "https://api.github.com/users/bep/orgs", 974 | "repos_url": "https://api.github.com/users/bep/repos", 975 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 976 | "received_events_url": "https://api.github.com/users/bep/received_events", 977 | "type": "User", 978 | "site_admin": false 979 | }, 980 | "content_type": "application/gzip", 981 | "state": "uploaded", 982 | "size": 15729612, 983 | "download_count": 2363, 984 | "created_at": "2021-05-02T15:28:33Z", 985 | "updated_at": "2021-05-02T15:28:33Z", 986 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_extended_0.83.1_macOS-64bit.tar.gz" 987 | }, 988 | { 989 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229510", 990 | "id": 36229510, 991 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTEw", 992 | "name": "hugo_extended_0.83.1_macOS-ARM64.tar.gz", 993 | "label": "", 994 | "uploader": { 995 | "login": "bep", 996 | "id": 394382, 997 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 998 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 999 | "gravatar_id": "", 1000 | "url": "https://api.github.com/users/bep", 1001 | "html_url": "https://github.com/bep", 1002 | "followers_url": "https://api.github.com/users/bep/followers", 1003 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 1004 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 1005 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 1006 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 1007 | "organizations_url": "https://api.github.com/users/bep/orgs", 1008 | "repos_url": "https://api.github.com/users/bep/repos", 1009 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 1010 | "received_events_url": "https://api.github.com/users/bep/received_events", 1011 | "type": "User", 1012 | "site_admin": false 1013 | }, 1014 | "content_type": "application/gzip", 1015 | "state": "uploaded", 1016 | "size": 14632745, 1017 | "download_count": 128, 1018 | "created_at": "2021-05-02T15:28:32Z", 1019 | "updated_at": "2021-05-02T15:28:33Z", 1020 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_extended_0.83.1_macOS-ARM64.tar.gz" 1021 | }, 1022 | { 1023 | "url": "https://api.github.com/repos/gohugoio/hugo/releases/assets/36229530", 1024 | "id": 36229530, 1025 | "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjI5NTMw", 1026 | "name": "hugo_extended_0.83.1_Windows-64bit.zip", 1027 | "label": "", 1028 | "uploader": { 1029 | "login": "bep", 1030 | "id": 394382, 1031 | "node_id": "MDQ6VXNlcjM5NDM4Mg==", 1032 | "avatar_url": "https://avatars.githubusercontent.com/u/394382?v=4", 1033 | "gravatar_id": "", 1034 | "url": "https://api.github.com/users/bep", 1035 | "html_url": "https://github.com/bep", 1036 | "followers_url": "https://api.github.com/users/bep/followers", 1037 | "following_url": "https://api.github.com/users/bep/following{/other_user}", 1038 | "gists_url": "https://api.github.com/users/bep/gists{/gist_id}", 1039 | "starred_url": "https://api.github.com/users/bep/starred{/owner}{/repo}", 1040 | "subscriptions_url": "https://api.github.com/users/bep/subscriptions", 1041 | "organizations_url": "https://api.github.com/users/bep/orgs", 1042 | "repos_url": "https://api.github.com/users/bep/repos", 1043 | "events_url": "https://api.github.com/users/bep/events{/privacy}", 1044 | "received_events_url": "https://api.github.com/users/bep/received_events", 1045 | "type": "User", 1046 | "site_admin": false 1047 | }, 1048 | "content_type": "application/zip", 1049 | "state": "uploaded", 1050 | "size": 15351802, 1051 | "download_count": 5509, 1052 | "created_at": "2021-05-02T15:28:37Z", 1053 | "updated_at": "2021-05-02T15:28:37Z", 1054 | "browser_download_url": "https://github.com/gohugoio/hugo/releases/download/v0.83.1/hugo_extended_0.83.1_Windows-64bit.zip" 1055 | } 1056 | ], 1057 | "tarball_url": "https://api.github.com/repos/gohugoio/hugo/tarball/v0.83.1", 1058 | "zipball_url": "https://api.github.com/repos/gohugoio/hugo/zipball/v0.83.1", 1059 | "body": "\r\n\r\nThis is a bug-fix release with one important fix.\r\n\r\n* langs/i18n: Fix warning regression in i18n [ececd1b1](https://github.com/gohugoio/hugo/commit/ececd1b122c741567a80acd8d60ccd6356fa5323) [@bep](https://github.com/bep) [#8492](https://github.com/gohugoio/hugo/issues/8492)\r\n\r\n\r\n\r\n\r\n" 1060 | } 1061 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. 4 | 5 | # [3.0.0](https://github.com/peaceiris/actions-hugo/compare/v2.6.0...v3.0.0) (2024-04-02) 6 | 7 | 8 | ### build 9 | 10 | * node 20.11.1 ([01bd2b1](https://github.com/peaceiris/actions-hugo/commit/01bd2b16cc6cadbc63cba9bddb36c689f462c2db)) 11 | 12 | ### chore 13 | 14 | * npm audit fix ([966dfad](https://github.com/peaceiris/actions-hugo/commit/966dfad3859a5cfc80b6e36761b0b4c7b3dd5e0c)) 15 | * revert version ([d85452e](https://github.com/peaceiris/actions-hugo/commit/d85452eadfba7065bf8c0601c8c22e427982d108)) 16 | 17 | ### ci 18 | 19 | * bump actions/dependency-review-action from 2 to 3 (#622) ([844f873](https://github.com/peaceiris/actions-hugo/commit/844f8735f61722d43677c23cbeae4283af7b554a)), closes [#622](https://github.com/peaceiris/actions-hugo/issues/622) 20 | * bump actions/setup-node from 3.5.1 to 3.6.0 (#625) ([3fa8fd6](https://github.com/peaceiris/actions-hugo/commit/3fa8fd6cee4e03774c4e900dca8b766d1cdcae93)), closes [#625](https://github.com/peaceiris/actions-hugo/issues/625) 21 | * bump checkout to v4 (#639) ([aadc3a9](https://github.com/peaceiris/actions-hugo/commit/aadc3a98dfd3437f8f97d436ea91b82a73dc85dd)), closes [#639](https://github.com/peaceiris/actions-hugo/issues/639) 22 | * bump peaceiris/actions-hugo from 2.5.0 to 2.6.0 (#621) ([b1822b6](https://github.com/peaceiris/actions-hugo/commit/b1822b6abe1a489f9ba7b9b664d916aeafd3e592)), closes [#621](https://github.com/peaceiris/actions-hugo/issues/621) 23 | 24 | ### docs 25 | 26 | * bump ruby version to 3.2 (#629) ([7c4b9f1](https://github.com/peaceiris/actions-hugo/commit/7c4b9f1f99c72728600c292c1f0e7138cc3a8865)), closes [#629](https://github.com/peaceiris/actions-hugo/issues/629) 27 | * bump versions (#628) ([7652d53](https://github.com/peaceiris/actions-hugo/commit/7652d5336914f4ecd975baff70cd3c4b5070678b)), closes [#628](https://github.com/peaceiris/actions-hugo/issues/628) 28 | * remove braces (#634) ([31c4654](https://github.com/peaceiris/actions-hugo/commit/31c46541ceabb0656cd9e943914ab1701da3e788)), closes [#634](https://github.com/peaceiris/actions-hugo/issues/634) 29 | * replace set-output with GITHUB_OUTPUT ([3d92e2f](https://github.com/peaceiris/actions-hugo/commit/3d92e2fd556bef7470d7e2a6aea63141183c20a6)) 30 | * update cache usage (#636) ([c0084b0](https://github.com/peaceiris/actions-hugo/commit/c0084b0763db3a37f864755d9174f2a6f3e0c1c5)), closes [#636](https://github.com/peaceiris/actions-hugo/issues/636) 31 | 32 | ### feat 33 | 34 | * bump to use node20 runtime (#641) ([c57490a](https://github.com/peaceiris/actions-hugo/commit/c57490a8b04136ae58ab5866a93d3db2f0fa0945)), closes [#641](https://github.com/peaceiris/actions-hugo/issues/641) 35 | 36 | 37 | 38 | # [2.6.0](https://github.com/peaceiris/actions-hugo/compare/v2.5.0...v2.6.0) (2022-10-23) 39 | 40 | 41 | ### chore 42 | 43 | * Convert templates to YAML issue forms ([5fb41c8](https://github.com/peaceiris/actions-hugo/commit/5fb41c87da82b4f59a6198b0752b2bca9078d4a4)) 44 | * Fix prettier (#535) ([5fa8f53](https://github.com/peaceiris/actions-hugo/commit/5fa8f53e895b6475798170197409983ae10d261c)), closes [#535](https://github.com/peaceiris/actions-hugo/issues/535) 45 | * fix year (#613) ([8da14cc](https://github.com/peaceiris/actions-hugo/commit/8da14cc542424be0081be3474ad36c74e34a7dfe)), closes [#613](https://github.com/peaceiris/actions-hugo/issues/613) 46 | * update url ([c1f39e2](https://github.com/peaceiris/actions-hugo/commit/c1f39e2b46476a13ad7e4a5eb06b8e2f582a2f13)) 47 | 48 | ### ci 49 | 50 | * add actions/dependency-review-action v1 ([4809af4](https://github.com/peaceiris/actions-hugo/commit/4809af4bd48eabfbb4c6be7588a9b3859dba454a)) 51 | * add resolved ([101470c](https://github.com/peaceiris/actions-hugo/commit/101470c99f5450d86c10ea44c549fd267b317ffc)) 52 | * bump actions/checkout from 2.3.4 to 2.3.5 (#546) ([3bb386e](https://github.com/peaceiris/actions-hugo/commit/3bb386ec5a21d7ae895f0880b0a2fb1ea189cd8b)), closes [#546](https://github.com/peaceiris/actions-hugo/issues/546) 53 | * bump actions/checkout from 2.3.5 to 2.4.0 (#548) ([86a3c30](https://github.com/peaceiris/actions-hugo/commit/86a3c300c730f9c35886afeca0af0c2ce031b0b4)), closes [#548](https://github.com/peaceiris/actions-hugo/issues/548) 54 | * bump actions/checkout from 2.4.0 to 3 (#565) ([a41bdb5](https://github.com/peaceiris/actions-hugo/commit/a41bdb53bd93ff61a324fffa43fab5b65bca4fdd)), closes [#565](https://github.com/peaceiris/actions-hugo/issues/565) 55 | * bump actions/dependency-review-action from 1 to 2 (#593) ([831547a](https://github.com/peaceiris/actions-hugo/commit/831547a4b23e8d07bbc73bdcc8423938d344bb4a)), closes [#593](https://github.com/peaceiris/actions-hugo/issues/593) 56 | * bump actions/setup-node from 2.1.5 to 2.2.0 (#529) ([497618b](https://github.com/peaceiris/actions-hugo/commit/497618ba62018779773217131791215872b92631)), closes [#529](https://github.com/peaceiris/actions-hugo/issues/529) 57 | * bump actions/setup-node from 2.2.0 to 2.3.0 (#531) ([781702e](https://github.com/peaceiris/actions-hugo/commit/781702ee9d9be2f39d1cc7971dfde041e1b17e1b)), closes [#531](https://github.com/peaceiris/actions-hugo/issues/531) 58 | * bump actions/setup-node from 2.3.0 to 2.3.2 (#537) ([239a50c](https://github.com/peaceiris/actions-hugo/commit/239a50c280a0b6595f3fd9f60f17d34e290a3ae4)), closes [#537](https://github.com/peaceiris/actions-hugo/issues/537) 59 | * bump actions/setup-node from 2.3.2 to 2.4.0 (#538) ([57272db](https://github.com/peaceiris/actions-hugo/commit/57272db01ca4c3253e4bb6163664a50a23a76cc5)), closes [#538](https://github.com/peaceiris/actions-hugo/issues/538) 60 | * bump actions/setup-node from 2.4.0 to 2.4.1 (#543) ([cebd001](https://github.com/peaceiris/actions-hugo/commit/cebd0015e0fbf4cdcd17422a1ba70f0c13b8b5c4)), closes [#543](https://github.com/peaceiris/actions-hugo/issues/543) 61 | * bump actions/setup-node from 2.4.1 to 2.5.0 (#551) ([008429a](https://github.com/peaceiris/actions-hugo/commit/008429aaabf87bac670904f069d682b7493ef9e1)), closes [#551](https://github.com/peaceiris/actions-hugo/issues/551) 62 | * bump actions/setup-node from 2.5.0 to 2.5.1 (#552) ([1575f40](https://github.com/peaceiris/actions-hugo/commit/1575f408aee0a92b8b324e1d7537fac7316d69d0)), closes [#552](https://github.com/peaceiris/actions-hugo/issues/552) 63 | * bump actions/setup-node from 2.5.1 to 3.0.0 (#557) ([550aee6](https://github.com/peaceiris/actions-hugo/commit/550aee6c368724015b790edca76711b5b6c8e781)), closes [#557](https://github.com/peaceiris/actions-hugo/issues/557) 64 | * bump actions/setup-node from 3.0.0 to 3.1.0 (#574) ([2f2b8d3](https://github.com/peaceiris/actions-hugo/commit/2f2b8d32b92379b30f0a4ad74d0cd6472c42e482)), closes [#574](https://github.com/peaceiris/actions-hugo/issues/574) 65 | * bump actions/setup-node from 3.1.0 to 3.1.1 (#577) ([25736cc](https://github.com/peaceiris/actions-hugo/commit/25736cc1c02fdd4b3eae34d261d2ad7fe45e135a)), closes [#577](https://github.com/peaceiris/actions-hugo/issues/577) 66 | * bump actions/setup-node from 3.1.1 to 3.4.1 (#598) ([11bede6](https://github.com/peaceiris/actions-hugo/commit/11bede66e7d1c36c4e39a5d1e32442056e41e7ef)), closes [#598](https://github.com/peaceiris/actions-hugo/issues/598) 67 | * bump actions/setup-node from 3.4.1 to 3.5.0 (#606) ([a2eba60](https://github.com/peaceiris/actions-hugo/commit/a2eba606985f706c754c8e4c283bc3d913897a31)), closes [#606](https://github.com/peaceiris/actions-hugo/issues/606) 68 | * bump actions/setup-node from 3.5.0 to 3.5.1 (#612) ([c0150f2](https://github.com/peaceiris/actions-hugo/commit/c0150f24bb3e706c93def97a4dae60b9b6fd23ff)), closes [#612](https://github.com/peaceiris/actions-hugo/issues/612) 69 | * bump actions/upload-artifact from 2 to 3 (#576) ([6ce18a7](https://github.com/peaceiris/actions-hugo/commit/6ce18a799f48752081f8aff7bdc21e0757b9f260)), closes [#576](https://github.com/peaceiris/actions-hugo/issues/576) 70 | * bump codecov/codecov-action from 1.5.0 to 1.5.2 (#526) ([ad8a667](https://github.com/peaceiris/actions-hugo/commit/ad8a66742861fb836a13187e2d66d126c2758296)), closes [#526](https://github.com/peaceiris/actions-hugo/issues/526) 71 | * bump codecov/codecov-action from 1.5.2 to 2.0.1 (#530) ([19b5ac8](https://github.com/peaceiris/actions-hugo/commit/19b5ac8979b2b5edfe306c9f3659b98effd6e285)), closes [#530](https://github.com/peaceiris/actions-hugo/issues/530) 72 | * bump codecov/codecov-action from 2.0.1 to 2.0.2 (#533) ([54f7007](https://github.com/peaceiris/actions-hugo/commit/54f7007102553a5e97014fbcb91aea3c0920db0b)), closes [#533](https://github.com/peaceiris/actions-hugo/issues/533) 73 | * bump codecov/codecov-action from 2.0.2 to 2.0.3 (#540) ([b911fb4](https://github.com/peaceiris/actions-hugo/commit/b911fb4dcf324e9f66c0553f61e037bead654e5d)), closes [#540](https://github.com/peaceiris/actions-hugo/issues/540) 74 | * bump codecov/codecov-action from 2.0.3 to 2.1.0 (#542) ([f93586e](https://github.com/peaceiris/actions-hugo/commit/f93586ef6c1a3a4f26eb0b6117e732507466d4de)), closes [#542](https://github.com/peaceiris/actions-hugo/issues/542) 75 | * bump codecov/codecov-action from 2.1.0 to 3 (#575) ([3c69ee1](https://github.com/peaceiris/actions-hugo/commit/3c69ee16122614bd86d8881c92e1e374669ca559)), closes [#575](https://github.com/peaceiris/actions-hugo/issues/575) 76 | * bump github/codeql-action from 1 to 2 (#581) ([808d10a](https://github.com/peaceiris/actions-hugo/commit/808d10a6aac88104619e8d47fca8a56eaeb71b12)), closes [#581](https://github.com/peaceiris/actions-hugo/issues/581) 77 | * bump peaceiris/actions-hugo from 2.4.13 to 2.5.0 (#521) ([6a16840](https://github.com/peaceiris/actions-hugo/commit/6a16840a8614e1d75a22df38f4a7555e7bb623ea)), closes [#521](https://github.com/peaceiris/actions-hugo/issues/521) 78 | * bump peaceiris/actions-label-commenter from 1.9.1 to 1.9.2 (#528) ([dead32d](https://github.com/peaceiris/actions-hugo/commit/dead32d58922938cb063b358881eb7df21e5b228)), closes [#528](https://github.com/peaceiris/actions-hugo/issues/528) 79 | * bump peaceiris/actions-label-commenter from 1.9.2 to 1.10.0 (#532) ([82ac7db](https://github.com/peaceiris/actions-hugo/commit/82ac7db7f2d5ece5824b40882acb6c9dbd31da56)), closes [#532](https://github.com/peaceiris/actions-hugo/issues/532) 80 | * Change event from published to released ([5d8b0b2](https://github.com/peaceiris/actions-hugo/commit/5d8b0b2005c61de25aa469e038efb717902a8500)) 81 | * drop ubuntu-18.04, add ubuntu-22.04 and ubuntu-latest (#603) ([bd5a5ed](https://github.com/peaceiris/actions-hugo/commit/bd5a5edf1b6a534bee1c70bd49f0ba3ff435e597)), closes [#603](https://github.com/peaceiris/actions-hugo/issues/603) 82 | * Remove updating npm ([ba23c24](https://github.com/peaceiris/actions-hugo/commit/ba23c24d3ae3be77ed05b3c0ac9990b030648de0)) 83 | 84 | ### deps 85 | 86 | * bump @actions/core from 1.2.7 to 1.6.0 (#544) ([be79927](https://github.com/peaceiris/actions-hugo/commit/be79927858b2280c3c371f70e54a8f73fd17d931)), closes [#544](https://github.com/peaceiris/actions-hugo/issues/544) 87 | * bump @actions/exec from 1.0.4 to 1.1.1 (#571) ([7d27b3c](https://github.com/peaceiris/actions-hugo/commit/7d27b3ca0d7d3196371a1d3fb1575317d6099146)), closes [#571](https://github.com/peaceiris/actions-hugo/issues/571) 88 | * bump @actions/tool-cache from 1.6.1 to 1.7.2 (#570) ([616b5f1](https://github.com/peaceiris/actions-hugo/commit/616b5f11b689c6a3064f589815e8bfbc04c444e9)), closes [#570](https://github.com/peaceiris/actions-hugo/issues/570) 89 | * bump ansi-regex from 5.0.0 to 5.0.1 (#562) ([857689a](https://github.com/peaceiris/actions-hugo/commit/857689ab4c02dd173b4d9b2bc569b94f0bd56a11)), closes [#562](https://github.com/peaceiris/actions-hugo/issues/562) 90 | * bump glob-parent from 5.1.1 to 5.1.2 (#563) ([91a922c](https://github.com/peaceiris/actions-hugo/commit/91a922ca60edf9a5dd9466dae065fcbd8e02efc2)), closes [#563](https://github.com/peaceiris/actions-hugo/issues/563) 91 | * bump minimist from 1.2.5 to 1.2.6 (#572) ([b2630b1](https://github.com/peaceiris/actions-hugo/commit/b2630b1c8ff9200bde342ec33b98c1ede4c03473)), closes [#572](https://github.com/peaceiris/actions-hugo/issues/572) 92 | * bump path-parse from 1.0.6 to 1.0.7 (#559) ([dee3925](https://github.com/peaceiris/actions-hugo/commit/dee39257f51c6bfbeffdc8b475029fad02299a5a)), closes [#559](https://github.com/peaceiris/actions-hugo/issues/559) 93 | * bump shelljs from 0.8.4 to 0.8.5 (#561) ([26d3d6b](https://github.com/peaceiris/actions-hugo/commit/26d3d6b6560f1131c4f9ae9622a7558ac9a2c19d)), closes [#561](https://github.com/peaceiris/actions-hugo/issues/561) 94 | * bump tmpl from 1.0.4 to 1.0.5 (#558) ([8f469b1](https://github.com/peaceiris/actions-hugo/commit/8f469b17c39a96eeffd077531bf8db8b9f22e916)), closes [#558](https://github.com/peaceiris/actions-hugo/issues/558) 95 | * bump trim-off-newlines from 1.0.1 to 1.0.3 (#560) ([f90a733](https://github.com/peaceiris/actions-hugo/commit/f90a73305c9f1a235a04a6dd16b8d728f72c623c)), closes [#560](https://github.com/peaceiris/actions-hugo/issues/560) 96 | * bump ws from 7.4.0 to 7.5.7 (#573) ([b15a5c7](https://github.com/peaceiris/actions-hugo/commit/b15a5c70d3e8c52cb88b2cc6786611441c83e9d4)), closes [#573](https://github.com/peaceiris/actions-hugo/issues/573) 97 | * node 12.22.4 ([4083be1](https://github.com/peaceiris/actions-hugo/commit/4083be136338c4140b03cbe12fe046a46c38dbdd)) 98 | 99 | ### docs 100 | 101 | * Add concurrency ([8d746f0](https://github.com/peaceiris/actions-hugo/commit/8d746f09e2808a6e250393fde3d471d7cf53a047)) 102 | * Improve concurrency usage ([20d6724](https://github.com/peaceiris/actions-hugo/commit/20d6724b2ce2fbb34442e0a950796050e21e054d)) 103 | * Improve if syntax ([068938a](https://github.com/peaceiris/actions-hugo/commit/068938ab2245aee69d3120f8b120f009345713a8)) 104 | * use setup-node cache-dependency-path (#602) ([46553ea](https://github.com/peaceiris/actions-hugo/commit/46553eae11dc4ca2d07de9f176dc4fa4c2c50c10)), closes [#602](https://github.com/peaceiris/actions-hugo/issues/602) 105 | * Use ubuntu-20.04 ([903b945](https://github.com/peaceiris/actions-hugo/commit/903b94526d6bc9980c3ed3de99ba63dad5209b10)) 106 | 107 | ### feat 108 | 109 | * bump node12 to node16 (#617) ([9a77c64](https://github.com/peaceiris/actions-hugo/commit/9a77c647c2a01d1de23ed40d01b9c80a00bffcd3)), closes [#617](https://github.com/peaceiris/actions-hugo/issues/617) 110 | 111 | 112 | 113 | # [2.5.0](https://github.com/peaceiris/actions-hugo/compare/v2.4.13...v2.5.0) (2021-05-27) 114 | 115 | 116 | ### build 117 | 118 | * Set target to ES2019 (#497) ([a6b1a4c](https://github.com/peaceiris/actions-hugo/commit/a6b1a4cb03657fdabc476d354be1de69c1f2c784)), closes [#497](https://github.com/peaceiris/actions-hugo/issues/497) 119 | 120 | ### chore 121 | 122 | * add link to Actions Documentation ([ecc4361](https://github.com/peaceiris/actions-hugo/commit/ecc43610c05bf8bb7339bc9f8f06ebafdaba1fa7)) 123 | * Add postinstall for husky install ([917a097](https://github.com/peaceiris/actions-hugo/commit/917a09767d1cfbe8ac1827d2da61fbcab8ad4f1e)) 124 | * fix husky ([c3d5873](https://github.com/peaceiris/actions-hugo/commit/c3d587365f380dd8aa22d5ab9bfb66bcdf1b7d2a)) 125 | * npx husky install ([d2e1e74](https://github.com/peaceiris/actions-hugo/commit/d2e1e740d08d04e87877506f4446cb5759b3784c)) 126 | * update husky config ([e77b890](https://github.com/peaceiris/actions-hugo/commit/e77b89094bb7e1c96f3803ad3e510b4075434ee3)) 127 | * update link to github.community ([35b8c49](https://github.com/peaceiris/actions-hugo/commit/35b8c49468604b403f35fdb315b22a3e3b784eb1)) 128 | 129 | ### ci 130 | 131 | * allow dependency-type production ([a448002](https://github.com/peaceiris/actions-hugo/commit/a448002cc3932bedf88a9304591e02ee58bd1ced)) 132 | * bump actions/checkout from 2 to 2.3.4 (#517) ([f245604](https://github.com/peaceiris/actions-hugo/commit/f2456046988c712555be95348c00a5b9c1dc6482)), closes [#517](https://github.com/peaceiris/actions-hugo/issues/517) 133 | * bump actions/setup-node from v2.1.2 to v2.1.3 (#479) ([9dea4e7](https://github.com/peaceiris/actions-hugo/commit/9dea4e7496af6b42e3306eb3b6c3321c15184669)), closes [#479](https://github.com/peaceiris/actions-hugo/issues/479) 134 | * bump actions/setup-node from v2.1.3 to v2.1.4 (#482) ([ee35d79](https://github.com/peaceiris/actions-hugo/commit/ee35d79f1a6a83d2295f63c1da996b30e027ccf3)), closes [#482](https://github.com/peaceiris/actions-hugo/issues/482) 135 | * bump actions/setup-node from v2.1.4 to v2.1.5 (#494) ([31afbc6](https://github.com/peaceiris/actions-hugo/commit/31afbc6b76e82fb797899aeb569b744008ca7d85)), closes [#494](https://github.com/peaceiris/actions-hugo/issues/494) 136 | * bump codecov/codecov-action from v1.0.13 to v1.0.14 (#460) ([4d4d52c](https://github.com/peaceiris/actions-hugo/commit/4d4d52c170a99805c8c86297fe9e8c630ff68b1d)), closes [#460](https://github.com/peaceiris/actions-hugo/issues/460) 137 | * bump codecov/codecov-action from v1.0.14 to v1.0.15 (#469) ([5560a30](https://github.com/peaceiris/actions-hugo/commit/5560a30c304a6acea63233ec9c73700f7150ae7e)), closes [#469](https://github.com/peaceiris/actions-hugo/issues/469) 138 | * bump codecov/codecov-action from v1.0.15 to v1.1.0 (#483) ([781fb44](https://github.com/peaceiris/actions-hugo/commit/781fb448ba019a547fa83cfe413845a856364f27)), closes [#483](https://github.com/peaceiris/actions-hugo/issues/483) 139 | * bump codecov/codecov-action from v1.1.0 to v1.1.1 (#485) ([8087db7](https://github.com/peaceiris/actions-hugo/commit/8087db721476005461b4283f77190b68d2c84f04)), closes [#485](https://github.com/peaceiris/actions-hugo/issues/485) 140 | * bump codecov/codecov-action from v1.1.1 to v1.2.0 (#487) ([8ed2f1f](https://github.com/peaceiris/actions-hugo/commit/8ed2f1fddd1c2ef4e402bb63eccfe29b809ba3d3)), closes [#487](https://github.com/peaceiris/actions-hugo/issues/487) 141 | * bump codecov/codecov-action from v1.2.0 to v1.2.1 (#488) ([f6171a1](https://github.com/peaceiris/actions-hugo/commit/f6171a1916a25e1f3e577308b3ca84fd3d36adb8)), closes [#488](https://github.com/peaceiris/actions-hugo/issues/488) 142 | * bump codecov/codecov-action from v1.2.1 to v1.2.2 (#501) ([b7da7a5](https://github.com/peaceiris/actions-hugo/commit/b7da7a5c7fc09e7f20da3571aacc93b19e31a884)), closes [#501](https://github.com/peaceiris/actions-hugo/issues/501) 143 | * bump codecov/codecov-action from v1.2.2 to v1.3.1 (#502) ([354ddc2](https://github.com/peaceiris/actions-hugo/commit/354ddc2c0e944651389d0825bddd38c58ed70b96)), closes [#502](https://github.com/peaceiris/actions-hugo/issues/502) 144 | * bump codecov/codecov-action from v1.3.1 to v1.3.2 (#506) ([937472e](https://github.com/peaceiris/actions-hugo/commit/937472ef054c627b8b2e5107045d1150659e519a)), closes [#506](https://github.com/peaceiris/actions-hugo/issues/506) 145 | * bump codecov/codecov-action from v1.3.2 to v1.4.0 (#511) ([065ff42](https://github.com/peaceiris/actions-hugo/commit/065ff428c585180c45d415b1135cd752949eb087)), closes [#511](https://github.com/peaceiris/actions-hugo/issues/511) 146 | * bump codecov/codecov-action from v1.4.0 to v1.4.1 (#512) ([929d18c](https://github.com/peaceiris/actions-hugo/commit/929d18cc521c942da835291cb76bab5babb6ba68)), closes [#512](https://github.com/peaceiris/actions-hugo/issues/512) 147 | * bump codecov/codecov-action from v1.4.1 to v1.5.0 (#514) ([634c0f2](https://github.com/peaceiris/actions-hugo/commit/634c0f28919c4ed0c99c7b830a780bab33530fd9)), closes [#514](https://github.com/peaceiris/actions-hugo/issues/514) 148 | * bump peaceiris/actions-hugo from 2 to 2.4.13 (#516) ([b843eae](https://github.com/peaceiris/actions-hugo/commit/b843eaee1d20f88acb7efec2004c1c1b250bbc37)), closes [#516](https://github.com/peaceiris/actions-hugo/issues/516) 149 | * bump peaceiris/actions-label-commenter from v1.6.1 to v1.7.0 (#475) ([7e706f1](https://github.com/peaceiris/actions-hugo/commit/7e706f138412fc25628776aba7ed982c2ecce77b)), closes [#475](https://github.com/peaceiris/actions-hugo/issues/475) 150 | * bump peaceiris/actions-label-commenter from v1.7.0 to v1.8.0 (#476) ([fc61cde](https://github.com/peaceiris/actions-hugo/commit/fc61cdeb0558a7e59e2faa6df595b789f91251dd)), closes [#476](https://github.com/peaceiris/actions-hugo/issues/476) 151 | * bump peaceiris/actions-label-commenter from v1.8.0 to v1.8.1 (#477) ([d2c234c](https://github.com/peaceiris/actions-hugo/commit/d2c234c93b647f937a85b7ca69f1af403e33eb52)), closes [#477](https://github.com/peaceiris/actions-hugo/issues/477) 152 | * bump peaceiris/actions-label-commenter from v1.8.1 to v1.8.2 (#478) ([9dc9001](https://github.com/peaceiris/actions-hugo/commit/9dc9001ec24de7b806c7585c6c5d1128fa536135)), closes [#478](https://github.com/peaceiris/actions-hugo/issues/478) 153 | * bump peaceiris/actions-label-commenter from v1.8.2 to v1.9.0 (#484) ([e4d3e17](https://github.com/peaceiris/actions-hugo/commit/e4d3e173c5addc432fd0bd982184a69e24961c72)), closes [#484](https://github.com/peaceiris/actions-hugo/issues/484) 154 | * bump peaceiris/actions-label-commenter from v1.9.0 to v1.9.1 (#493) ([638ebc3](https://github.com/peaceiris/actions-hugo/commit/638ebc39d8a766ab0d12a9124054051d1b31d7a1)), closes [#493](https://github.com/peaceiris/actions-hugo/issues/493) 155 | * Drop ubuntu-16.04 (#513) ([6b42ea1](https://github.com/peaceiris/actions-hugo/commit/6b42ea1676602f31267ebd3466784cd813863ef7)), closes [#513](https://github.com/peaceiris/actions-hugo/issues/513) 156 | * Fix husky post-merge ([4f6ebdd](https://github.com/peaceiris/actions-hugo/commit/4f6ebdd7670cb3d0b3d9c574d9c11788b57006b3)) 157 | * Fix husky post-merge (#491) ([029d5ce](https://github.com/peaceiris/actions-hugo/commit/029d5ce0d047998a61ed87b48b7d11396109376e)), closes [#491](https://github.com/peaceiris/actions-hugo/issues/491) 158 | * Migrate husky from v4 to v5 ([9564982](https://github.com/peaceiris/actions-hugo/commit/9564982d194bfb3b965d21d80c8903dbd328cdc6)) 159 | * remove CODECOV_TOKEN (#490) ([b2b9041](https://github.com/peaceiris/actions-hugo/commit/b2b9041dc7d472875c86939648440bcc2afad6c4)), closes [#490](https://github.com/peaceiris/actions-hugo/issues/490) 160 | * remove options no longer needed (#474) ([ff64ad3](https://github.com/peaceiris/actions-hugo/commit/ff64ad3cd40de5c81409ba2f937b47ab573905c2)), closes [#474](https://github.com/peaceiris/actions-hugo/issues/474) 161 | * Remove skipci job ([da35efe](https://github.com/peaceiris/actions-hugo/commit/da35efefa826a63d06a9d2642ac18d7ce312eed0)) 162 | 163 | ### deps 164 | 165 | * bump @actions/core from 1.2.6 to 1.2.7 (#507) ([b263ea9](https://github.com/peaceiris/actions-hugo/commit/b263ea9e10ee728a536db434c3e1babbb6bb3018)), closes [#507](https://github.com/peaceiris/actions-hugo/issues/507) 166 | * bump @actions/io from 1.0.2 to 1.1.0 (#505) ([d2d1138](https://github.com/peaceiris/actions-hugo/commit/d2d11383067fa9ee8a84783edc89a133fd841695)), closes [#505](https://github.com/peaceiris/actions-hugo/issues/505) 167 | * bump @actions/tool-cache from 1.6.0 to 1.6.1 (#468) ([bad2722](https://github.com/peaceiris/actions-hugo/commit/bad27227bf688526565c17d3991a6bb07da351f9)), closes [#468](https://github.com/peaceiris/actions-hugo/issues/468) 168 | * bump @types/node from 12.12.63 to 12.12.64 (#454) ([8bb474e](https://github.com/peaceiris/actions-hugo/commit/8bb474e6f039d3c0554a1c447715f9afd0990671)), closes [#454](https://github.com/peaceiris/actions-hugo/issues/454) 169 | * bump @types/node from 12.12.64 to 12.12.66 (#455) ([0c241c1](https://github.com/peaceiris/actions-hugo/commit/0c241c131a7ac06e0ca15d1de99a12dd627025a1)), closes [#455](https://github.com/peaceiris/actions-hugo/issues/455) 170 | * bump @types/node from 12.12.66 to 12.12.67 (#457) ([57c1213](https://github.com/peaceiris/actions-hugo/commit/57c12138971d301923f23b4f3009e6aa5d5439d0)), closes [#457](https://github.com/peaceiris/actions-hugo/issues/457) 171 | * bump ini from 1.3.5 to 1.3.8 (#480) ([beaa1ee](https://github.com/peaceiris/actions-hugo/commit/beaa1ee2a1492de7430bac2238e29e8ff4950ee3)), closes [#480](https://github.com/peaceiris/actions-hugo/issues/480) 172 | * bump jest-circus from 26.5.1 to 26.5.2 (#453) ([2b3e82c](https://github.com/peaceiris/actions-hugo/commit/2b3e82c924f5a8189be9b0db3c2fa4c88fc6093f)), closes [#453](https://github.com/peaceiris/actions-hugo/issues/453) 173 | * bump jest-circus from 26.5.2 to 26.5.3 (#456) ([7e8c2a0](https://github.com/peaceiris/actions-hugo/commit/7e8c2a08b40a6e0fcec415033ab6cbe45bb6eb76)), closes [#456](https://github.com/peaceiris/actions-hugo/issues/456) 174 | * bump node from 12.18.4 to 12.19.0 (#458) ([d183b58](https://github.com/peaceiris/actions-hugo/commit/d183b58fee71c13b2d63864067b2129ad91d4b9a)), closes [#458](https://github.com/peaceiris/actions-hugo/issues/458) 175 | * bump node from 12.19.0 to 12.19.1 (#471) ([21d2e6e](https://github.com/peaceiris/actions-hugo/commit/21d2e6ea580812d56a69582f9d57dca65ee9b96c)), closes [#471](https://github.com/peaceiris/actions-hugo/issues/471) [#472](https://github.com/peaceiris/actions-hugo/issues/472) 176 | * bump node from 12.19.1 to 12.20.0 ([8808a28](https://github.com/peaceiris/actions-hugo/commit/8808a28020ccea48f350ea3099e99ea610fd2b15)) 177 | * bump node from 12.20.0 to 12.20.1 (#489) ([10834f4](https://github.com/peaceiris/actions-hugo/commit/10834f4404ee13ef757d5fa80317d3cdc85b9c5f)), closes [#489](https://github.com/peaceiris/actions-hugo/issues/489) 178 | * bump node from 12.20.1 to 12.21.0 (#500) ([da36599](https://github.com/peaceiris/actions-hugo/commit/da36599fbf30f21edf7f0cb53689cbdcc25a2ef8)), closes [#500](https://github.com/peaceiris/actions-hugo/issues/500) 179 | * Bump node from 12.21.0 to 12.22.0 (#503) ([5d548aa](https://github.com/peaceiris/actions-hugo/commit/5d548aa7b61b9b09310447cdd8709fb466653fbb)), closes [#503](https://github.com/peaceiris/actions-hugo/issues/503) 180 | * Bump node from 12.22.0 to 12.22.1 (#510) ([b674697](https://github.com/peaceiris/actions-hugo/commit/b67469730cda7ba4581ae824283ce8bb5e8f990b)), closes [#510](https://github.com/peaceiris/actions-hugo/issues/510) 181 | * bump node-notifier from 8.0.0 to 8.0.1 (#486) ([206a218](https://github.com/peaceiris/actions-hugo/commit/206a21899a688eed53406e4f6631c751b51e513f)), closes [#486](https://github.com/peaceiris/actions-hugo/issues/486) 182 | * Bump npm to v7 ([612b00f](https://github.com/peaceiris/actions-hugo/commit/612b00fe8fa8da50a91bf0fa58b67f5925ae2d0f)) 183 | * npm audit fix ([f3792d9](https://github.com/peaceiris/actions-hugo/commit/f3792d95d87de9180705d1d1df33775d430215f1)) 184 | * update (#459) ([a533681](https://github.com/peaceiris/actions-hugo/commit/a5336818dfd0400855e4e9856510a54c11dd33b0)), closes [#459](https://github.com/peaceiris/actions-hugo/issues/459) 185 | * update dev deps (#462) ([0df2d42](https://github.com/peaceiris/actions-hugo/commit/0df2d4252f179fa015364acdffa8b85453ddac8d)), closes [#462](https://github.com/peaceiris/actions-hugo/issues/462) 186 | * update devDependencies (#466) ([d2b6644](https://github.com/peaceiris/actions-hugo/commit/d2b6644a8068056eb31d292277fd01fe9d50438c)), closes [#466](https://github.com/peaceiris/actions-hugo/issues/466) 187 | * update devDependencies (#492) ([32f5b71](https://github.com/peaceiris/actions-hugo/commit/32f5b71c41c0ee8e154160a00a90dd345ed71168)), closes [#492](https://github.com/peaceiris/actions-hugo/issues/492) 188 | * update devDependencies (#498) ([9f50a3c](https://github.com/peaceiris/actions-hugo/commit/9f50a3c912f8d1b5be9d4ee06fb2e1e893ab0d20)), closes [#498](https://github.com/peaceiris/actions-hugo/issues/498) 189 | 190 | ### docs 191 | 192 | * Add Non-ascii Filename section (#499) ([0590f91](https://github.com/peaceiris/actions-hugo/commit/0590f912fcce9b0c257424efc5e79075a0a88a0c)), closes [#499](https://github.com/peaceiris/actions-hugo/issues/499) 193 | * Add pull_request event ([65bdbf1](https://github.com/peaceiris/actions-hugo/commit/65bdbf15ab5818f14c718f27d5c769dc1a4fb32b)) 194 | * Bump actions/setup-node from v1 to v2 ([e53f8d6](https://github.com/peaceiris/actions-hugo/commit/e53f8d69e59fe9a25e6f3c24717cfd0d51b57b0b)) 195 | * Bump hugo from 0.79.1 to 0.81.0 ([fbae6cf](https://github.com/peaceiris/actions-hugo/commit/fbae6cf1c897ef7ec3e69991eee81e57e57e4898)) 196 | * bump versions ([b0fb91b](https://github.com/peaceiris/actions-hugo/commit/b0fb91bc02638e5ca8f0139c91cbff931167f7a7)) 197 | * update title position ([a7dd109](https://github.com/peaceiris/actions-hugo/commit/a7dd10985c1e5f8029577517cff546202a3b6e5f)) 198 | 199 | ### feat 200 | 201 | * Add support for different processor architectures (#518) ([6d30a88](https://github.com/peaceiris/actions-hugo/commit/6d30a88741382c063b723b98b1bad3a71b248f1b)), closes [#518](https://github.com/peaceiris/actions-hugo/issues/518) 202 | 203 | 204 | 205 | ## [2.4.13](https://github.com/peaceiris/actions-hugo/compare/v2.4.12...v2.4.13) (2020-10-06) 206 | 207 | 208 | ### chore 209 | 210 | * change default branch from master to main (#386) ([da2d546](https://github.com/peaceiris/actions-hugo/commit/da2d5466d39aab034669dc2701c6cf17e25082d0)), closes [#386](https://github.com/peaceiris/actions-hugo/issues/386) 211 | * change printWidth from 80 to 100 (#365) ([8bff475](https://github.com/peaceiris/actions-hugo/commit/8bff475612e4668972f3cf13bf8ffe48a6da31a3)), closes [#365](https://github.com/peaceiris/actions-hugo/issues/365) 212 | * disable deno on vscode (#388) ([71327d4](https://github.com/peaceiris/actions-hugo/commit/71327d464610fe5163689864e5b68d2fb4ceb776)), closes [#388](https://github.com/peaceiris/actions-hugo/issues/388) 213 | * fix link to GitHub Actions Community Forum ([919a5f9](https://github.com/peaceiris/actions-hugo/commit/919a5f9b0bd1b53e8bcabd4f014f46d01ea3e5cb)) 214 | 215 | ### ci 216 | 217 | * add codeql workflow ([2fa902b](https://github.com/peaceiris/actions-hugo/commit/2fa902b35f172f555ee4764fb8f35f350058907a)) 218 | * add workflow_dispatch ([1eeaa0e](https://github.com/peaceiris/actions-hugo/commit/1eeaa0edab53b2141fa624e108430359a2e88ddd)) 219 | * bump actions/setup-node from v2.0.0 to v2.1.0 (#371) ([d59d21e](https://github.com/peaceiris/actions-hugo/commit/d59d21e63364d8b9aa822370f3ebc8c2261d69db)), closes [#371](https://github.com/peaceiris/actions-hugo/issues/371) 220 | * bump actions/setup-node from v2.1.0 to v2.1.1 (#392) ([316ab5f](https://github.com/peaceiris/actions-hugo/commit/316ab5f3800f1b485387c80cd13c9507cda1303b)), closes [#392](https://github.com/peaceiris/actions-hugo/issues/392) 221 | * bump actions/setup-node from v2.1.1 to v2.1.2 (#449) ([d13e210](https://github.com/peaceiris/actions-hugo/commit/d13e210741153eccc070e1eeb9c1f2d3526c0e6c)), closes [#449](https://github.com/peaceiris/actions-hugo/issues/449) 222 | * bump codecov/codecov-action from v1.0.10 to v1.0.11 (#389) ([76e5f6f](https://github.com/peaceiris/actions-hugo/commit/76e5f6f1f3c2f6a2b52209bf45ff6fb647a7dfd2)), closes [#389](https://github.com/peaceiris/actions-hugo/issues/389) 223 | * bump codecov/codecov-action from v1.0.11 to v1.0.12 (#393) ([f8104a9](https://github.com/peaceiris/actions-hugo/commit/f8104a9bdbcb58df14a6806b56f7efdf52f923f6)), closes [#393](https://github.com/peaceiris/actions-hugo/issues/393) 224 | * bump codecov/codecov-action from v1.0.12 to v1.0.13 (#414) ([c230bfd](https://github.com/peaceiris/actions-hugo/commit/c230bfdf9987fa980cf88815a8bdaf8263b524d1)), closes [#414](https://github.com/peaceiris/actions-hugo/issues/414) 225 | * bump codecov/codecov-action from v1.0.7 to v1.0.10 (#373) ([00ad573](https://github.com/peaceiris/actions-hugo/commit/00ad5734ffe779107015e871a2119a3d0a39dabf)), closes [#373](https://github.com/peaceiris/actions-hugo/issues/373) 226 | * bump peaceiris/actions-label-commenter from v1 to v1.3.7 (#364) ([be37873](https://github.com/peaceiris/actions-hugo/commit/be3787356a00883bf4555fe5bfc7d96399badaf1)), closes [#364](https://github.com/peaceiris/actions-hugo/issues/364) 227 | * bump peaceiris/actions-label-commenter from v1.3.7 to v1.5.0 (#406) ([baf4896](https://github.com/peaceiris/actions-hugo/commit/baf489601c45dddea57fec27266aebb925e8f59e)), closes [#406](https://github.com/peaceiris/actions-hugo/issues/406) 228 | * bump peaceiris/actions-label-commenter from v1.5.0 to v1.6.0 (#434) ([3120b3d](https://github.com/peaceiris/actions-hugo/commit/3120b3dd8cded1491ca95f260d3e9453e83a3569)), closes [#434](https://github.com/peaceiris/actions-hugo/issues/434) 229 | * bump peaceiris/actions-label-commenter from v1.6.0 to v1.6.1 (#437) ([22a5584](https://github.com/peaceiris/actions-hugo/commit/22a55848e80df28d2847fdbb1689faae37a08a29)), closes [#437](https://github.com/peaceiris/actions-hugo/issues/437) 230 | * remove open-pull-requests-limit ([53a8986](https://github.com/peaceiris/actions-hugo/commit/53a8986af5a407ed9b889581cd97b72795d44619)) 231 | 232 | ### deps 233 | 234 | * bump @actions/core from 1.2.4 to 1.2.5 (#422) ([5825c93](https://github.com/peaceiris/actions-hugo/commit/5825c9307b65034c724a21f02fb1697c12738846)), closes [#422](https://github.com/peaceiris/actions-hugo/issues/422) 235 | * bump @actions/core from 1.2.5 to 1.2.6 (#448) ([33a289a](https://github.com/peaceiris/actions-hugo/commit/33a289a0d5de244428f483056fcc356281b21bb5)), closes [#448](https://github.com/peaceiris/actions-hugo/issues/448) 236 | * bump @actions/tool-cache from 1.5.5 to 1.6.0 (#383) ([3f02ff7](https://github.com/peaceiris/actions-hugo/commit/3f02ff7a9e8c09b32b229a513855dfea3469b586)), closes [#383](https://github.com/peaceiris/actions-hugo/issues/383) 237 | * bump @types/jest from 26.0.0 to 26.0.3 (#369) ([f42b985](https://github.com/peaceiris/actions-hugo/commit/f42b9853d37d1c2b67960f92c4f1467f105d9050)), closes [#369](https://github.com/peaceiris/actions-hugo/issues/369) 238 | * bump @types/jest from 26.0.10 to 26.0.12 (#425) ([6b13193](https://github.com/peaceiris/actions-hugo/commit/6b131935e45ad0d1ec561c2fc3bb43dba781978c)), closes [#425](https://github.com/peaceiris/actions-hugo/issues/425) 239 | * bump @types/jest from 26.0.12 to 26.0.13 (#427) ([b59871c](https://github.com/peaceiris/actions-hugo/commit/b59871c37d97cbbb3ad6b14b5efb20134367a886)), closes [#427](https://github.com/peaceiris/actions-hugo/issues/427) 240 | * bump @types/jest from 26.0.13 to 26.0.14 (#442) ([3317f5e](https://github.com/peaceiris/actions-hugo/commit/3317f5e6cdcbc51c69a4c9eb9fceb445a78f08ad)), closes [#442](https://github.com/peaceiris/actions-hugo/issues/442) 241 | * bump @types/jest from 26.0.3 to 26.0.4 (#378) ([16d8ce1](https://github.com/peaceiris/actions-hugo/commit/16d8ce1cd5912320ea2cac7bae2040fcc49fdc71)), closes [#378](https://github.com/peaceiris/actions-hugo/issues/378) 242 | * bump @types/jest from 26.0.4 to 26.0.5 (#390) ([b7fbea4](https://github.com/peaceiris/actions-hugo/commit/b7fbea4c342a48c1ab8f134904b6bf08e1a8778c)), closes [#390](https://github.com/peaceiris/actions-hugo/issues/390) 243 | * bump @types/jest from 26.0.5 to 26.0.7 (#394) ([be3e1cc](https://github.com/peaceiris/actions-hugo/commit/be3e1ccca2b306b40d88010110f71697a24ab5ea)), closes [#394](https://github.com/peaceiris/actions-hugo/issues/394) 244 | * bump @types/jest from 26.0.7 to 26.0.8 (#405) ([7753141](https://github.com/peaceiris/actions-hugo/commit/77531419b598596623841e82209ed5248c48dd57)), closes [#405](https://github.com/peaceiris/actions-hugo/issues/405) 245 | * bump @types/jest from 26.0.8 to 26.0.9 (#407) ([77557cc](https://github.com/peaceiris/actions-hugo/commit/77557cc3914eee0b1f7032fb817b254d0f058349)), closes [#407](https://github.com/peaceiris/actions-hugo/issues/407) 246 | * bump @types/jest from 26.0.9 to 26.0.10 (#412) ([6ec44a7](https://github.com/peaceiris/actions-hugo/commit/6ec44a730389338c62ba4c4ef5e1852434143313)), closes [#412](https://github.com/peaceiris/actions-hugo/issues/412) 247 | * bump @types/node from 12.12.47 to 12.12.48 (#379) ([1835230](https://github.com/peaceiris/actions-hugo/commit/1835230a2b35e8911a4bb269dec0288e382a71b7)), closes [#379](https://github.com/peaceiris/actions-hugo/issues/379) 248 | * bump @types/node from 12.12.48 to 12.12.50 (#381) ([cf40bc8](https://github.com/peaceiris/actions-hugo/commit/cf40bc8ca5e14cd0ec57951a98733f086bbcfa16)), closes [#381](https://github.com/peaceiris/actions-hugo/issues/381) 249 | * bump @types/node from 12.12.50 to 12.12.51 (#391) ([64f9c36](https://github.com/peaceiris/actions-hugo/commit/64f9c36d5ec62f7959fe8b3043824439ace7cde4)), closes [#391](https://github.com/peaceiris/actions-hugo/issues/391) 250 | * bump @types/node from 12.12.51 to 12.12.52 (#395) ([beefbb4](https://github.com/peaceiris/actions-hugo/commit/beefbb44e1de5739a9b1dd7bbc10d1606f9866f6)), closes [#395](https://github.com/peaceiris/actions-hugo/issues/395) 251 | * bump @types/node from 12.12.52 to 12.12.53 (#396) ([67dcb24](https://github.com/peaceiris/actions-hugo/commit/67dcb244d0ca45c57445c2fb646552b1cf03c65c)), closes [#396](https://github.com/peaceiris/actions-hugo/issues/396) 252 | * bump @types/node from 12.12.53 to 12.12.54 (#408) ([bfac474](https://github.com/peaceiris/actions-hugo/commit/bfac4748b6753a66efa47642234fc23d92c74334)), closes [#408](https://github.com/peaceiris/actions-hugo/issues/408) 253 | * bump @types/node from 12.12.54 to 12.12.55 (#426) ([e7fbc0b](https://github.com/peaceiris/actions-hugo/commit/e7fbc0b5dad38548f6a1cab00814f07b63f21806)), closes [#426](https://github.com/peaceiris/actions-hugo/issues/426) 254 | * bump @types/node from 12.12.55 to 12.12.56 (#432) ([79ed21e](https://github.com/peaceiris/actions-hugo/commit/79ed21ee9b1e2b96609fad1b17645284c8a339d3)), closes [#432](https://github.com/peaceiris/actions-hugo/issues/432) 255 | * bump @types/node from 12.12.56 to 12.12.57 (#433) ([4b04428](https://github.com/peaceiris/actions-hugo/commit/4b04428f53d215bc618147869807115d6ed825df)), closes [#433](https://github.com/peaceiris/actions-hugo/issues/433) 256 | * bump @types/node from 12.12.57 to 12.12.58 (#436) ([f0e8386](https://github.com/peaceiris/actions-hugo/commit/f0e838658fd4fea293ab1875dd0c02f7d89599f1)), closes [#436](https://github.com/peaceiris/actions-hugo/issues/436) 257 | * bump @types/node from 12.12.58 to 12.12.59 (#441) ([873c0ab](https://github.com/peaceiris/actions-hugo/commit/873c0ab6caaa6d57841d9a749e0183f4ade7e035)), closes [#441](https://github.com/peaceiris/actions-hugo/issues/441) 258 | * bump @types/node from 12.12.59 to 12.12.61 (#443) ([5e135f6](https://github.com/peaceiris/actions-hugo/commit/5e135f617c2558ff55cca069e94b283e0399834d)), closes [#443](https://github.com/peaceiris/actions-hugo/issues/443) 259 | * bump @types/node from 12.12.61 to 12.12.62 (#445) ([267b3f1](https://github.com/peaceiris/actions-hugo/commit/267b3f1c66006dcdc3a7db3d4e3def0a08a1459c)), closes [#445](https://github.com/peaceiris/actions-hugo/issues/445) 260 | * bump @types/node from 12.12.62 to 12.12.63 (#451) ([cd215c4](https://github.com/peaceiris/actions-hugo/commit/cd215c4ce492dcca194a5b75f694eeef53dd09c2)), closes [#451](https://github.com/peaceiris/actions-hugo/issues/451) 261 | * bump @vercel/ncc from 0.23.0 to 0.24.0 (#424) ([5b3d1ee](https://github.com/peaceiris/actions-hugo/commit/5b3d1ee00716bbabf4b3209c6005152d4379a29f)), closes [#424](https://github.com/peaceiris/actions-hugo/issues/424) 262 | * bump @vercel/ncc from 0.24.0 to 0.24.1 (#438) ([802b595](https://github.com/peaceiris/actions-hugo/commit/802b5950937d77eb06be7ba586ed59425b72ed8d)), closes [#438](https://github.com/peaceiris/actions-hugo/issues/438) 263 | * bump eslint-plugin-jest from 23.13.2 to 23.16.0 (#366) ([9f4ef01](https://github.com/peaceiris/actions-hugo/commit/9f4ef016d64fc31a87ea56518d6cf1f92c8cb0a2)), closes [#366](https://github.com/peaceiris/actions-hugo/issues/366) 264 | * bump eslint-plugin-jest from 23.16.0 to 23.17.1 (#368) ([638096b](https://github.com/peaceiris/actions-hugo/commit/638096b27ff13e63f4f90e4d5bf05e814edcebcc)), closes [#368](https://github.com/peaceiris/actions-hugo/issues/368) 265 | * bump eslint-plugin-jest from 23.17.1 to 23.18.0 (#377) ([f1c7ecd](https://github.com/peaceiris/actions-hugo/commit/f1c7ecda6150ba2c6dbbce39119d6f5b0ad723bf)), closes [#377](https://github.com/peaceiris/actions-hugo/issues/377) 266 | * bump eslint-plugin-jest from 23.18.0 to 23.18.2 (#397) ([2acd7a4](https://github.com/peaceiris/actions-hugo/commit/2acd7a45c87d54f0d53e7929649160f728cc4f74)), closes [#397](https://github.com/peaceiris/actions-hugo/issues/397) 267 | * bump eslint-plugin-jest from 23.18.2 to 23.19.0 (#400) ([5a7d3a7](https://github.com/peaceiris/actions-hugo/commit/5a7d3a75068f8dddac3aaa407896f38a7109e347)), closes [#400](https://github.com/peaceiris/actions-hugo/issues/400) 268 | * bump eslint-plugin-jest from 23.19.0 to 23.20.0 (#401) ([32ec0a2](https://github.com/peaceiris/actions-hugo/commit/32ec0a285c6a0dd4f2df66f9851f319f1fbd8abe)), closes [#401](https://github.com/peaceiris/actions-hugo/issues/401) 269 | * bump git from 2.27.0 to 2.28.0 (#398) ([61b002f](https://github.com/peaceiris/actions-hugo/commit/61b002f4ffb3492723a32a2d9539df503c9776c1)), closes [#398](https://github.com/peaceiris/actions-hugo/issues/398) 270 | * bump husky from 4.2.5 to 4.3.0 (#431) ([4c60b23](https://github.com/peaceiris/actions-hugo/commit/4c60b233f21cff00faffa17a99bd07c924e19efd)), closes [#431](https://github.com/peaceiris/actions-hugo/issues/431) 271 | * bump jest-circus from 26.0.1 to 26.1.0 (#367) ([838268a](https://github.com/peaceiris/actions-hugo/commit/838268abaf30b5c3b2e0cd5ce852fd870498f45f)), closes [#367](https://github.com/peaceiris/actions-hugo/issues/367) 272 | * bump jest-circus from 26.1.0 to 26.2.1 (#402) ([d1ebf3f](https://github.com/peaceiris/actions-hugo/commit/d1ebf3fd0d7cf76c277b7c1d8c7839858002a9cc)), closes [#402](https://github.com/peaceiris/actions-hugo/issues/402) 273 | * bump jest-circus from 26.2.1 to 26.2.2 (#404) ([e45313c](https://github.com/peaceiris/actions-hugo/commit/e45313c6a1dc39551c2fdbb4bee2f4b8ccbe95a1)), closes [#404](https://github.com/peaceiris/actions-hugo/issues/404) 274 | * bump jest-circus from 26.2.2 to 26.3.0 (#409) ([6c93ce5](https://github.com/peaceiris/actions-hugo/commit/6c93ce5fefba5bc01d294f4d82d61f593fbf789f)), closes [#409](https://github.com/peaceiris/actions-hugo/issues/409) 275 | * bump jest-circus from 26.3.0 to 26.4.0 (#411) ([997c3c8](https://github.com/peaceiris/actions-hugo/commit/997c3c888aa18613298ce0e513eea735f20f79ed)), closes [#411](https://github.com/peaceiris/actions-hugo/issues/411) 276 | * bump jest-circus from 26.4.0 to 26.4.1 (#415) ([e0b4d02](https://github.com/peaceiris/actions-hugo/commit/e0b4d029a23577852cd59f4b1d23c1d1d699e266)), closes [#415](https://github.com/peaceiris/actions-hugo/issues/415) 277 | * bump jest-circus from 26.4.1 to 26.4.2 (#417) ([caf4dd6](https://github.com/peaceiris/actions-hugo/commit/caf4dd6aaebf0047f62f6a9957fc95db56c0fa03)), closes [#417](https://github.com/peaceiris/actions-hugo/issues/417) 278 | * bump jest-circus from 26.4.2 to 26.5.1 (#452) ([88b26ab](https://github.com/peaceiris/actions-hugo/commit/88b26abfee0c22c81cafe781cc7e3693114f9395)), closes [#452](https://github.com/peaceiris/actions-hugo/issues/452) 279 | * bump lint-staged from 10.2.11 to 10.2.13 (#421) ([b0f29e7](https://github.com/peaceiris/actions-hugo/commit/b0f29e7edec0ad7fe12d4b9434826e4a96477569)), closes [#421](https://github.com/peaceiris/actions-hugo/issues/421) 280 | * bump lint-staged from 10.2.13 to 10.3.0 (#428) ([4e17872](https://github.com/peaceiris/actions-hugo/commit/4e17872cd1999a77ff3faef0a282c3ded0b28b3c)), closes [#428](https://github.com/peaceiris/actions-hugo/issues/428) 281 | * bump lint-staged from 10.3.0 to 10.4.0 (#444) ([3c58869](https://github.com/peaceiris/actions-hugo/commit/3c588690f52351f1370705f9a5f1c63aed991de3)), closes [#444](https://github.com/peaceiris/actions-hugo/issues/444) 282 | * bump lodash from 4.17.15 to 4.17.19 (#385) ([71f80af](https://github.com/peaceiris/actions-hugo/commit/71f80aff9fddceefe3b6992d8c6956af13d5727e)), closes [#385](https://github.com/peaceiris/actions-hugo/issues/385) 283 | * bump nock from 12.0.3 to 13.0.0 (#370) ([e4507ca](https://github.com/peaceiris/actions-hugo/commit/e4507caf0b86e8bac1307a239121c70bd62939bd)), closes [#370](https://github.com/peaceiris/actions-hugo/issues/370) 284 | * bump nock from 13.0.0 to 13.0.1 (#372) ([45f920d](https://github.com/peaceiris/actions-hugo/commit/45f920d29b694bdae5abae2ca5e8e4a0c7ba485f)), closes [#372](https://github.com/peaceiris/actions-hugo/issues/372) 285 | * bump nock from 13.0.1 to 13.0.2 (#375) ([eb88818](https://github.com/peaceiris/actions-hugo/commit/eb88818df93189cd54c302fdc18a2c6e876ab08e)), closes [#375](https://github.com/peaceiris/actions-hugo/issues/375) 286 | * bump nock from 13.0.2 to 13.0.3 (#399) ([1f22e6c](https://github.com/peaceiris/actions-hugo/commit/1f22e6c5e634fdfb21daa12d295feac44d428630)), closes [#399](https://github.com/peaceiris/actions-hugo/issues/399) 287 | * bump nock from 13.0.3 to 13.0.4 (#410) ([a6baa39](https://github.com/peaceiris/actions-hugo/commit/a6baa39988b85528fd574be8e232a06f72c397b5)), closes [#410](https://github.com/peaceiris/actions-hugo/issues/410) 288 | * bump node from 12.18.1 to 12.18.2 (#376) ([96f56de](https://github.com/peaceiris/actions-hugo/commit/96f56dee02dd507288dcd0d32b1aabceda20a532)), closes [#376](https://github.com/peaceiris/actions-hugo/issues/376) 289 | * bump node from 12.18.2 to 12.18.3 ([ca4532b](https://github.com/peaceiris/actions-hugo/commit/ca4532b6bc8a7a24dd2f638a848293cfef749689)) 290 | * bump node from 12.18.3 to 12.18.4 (#446) ([01cbeb8](https://github.com/peaceiris/actions-hugo/commit/01cbeb899ce86671ad0d046f1c1dbc9d716bf993)), closes [#446](https://github.com/peaceiris/actions-hugo/issues/446) 291 | * bump node-fetch from 2.6.0 to 2.6.1 (#430) ([bcbb69d](https://github.com/peaceiris/actions-hugo/commit/bcbb69dfa4370721c165c579cf4b3482ff90516d)), closes [#430](https://github.com/peaceiris/actions-hugo/issues/430) 292 | * bump prettier from 2.0.5 to 2.1.0 (#420) ([b94c20b](https://github.com/peaceiris/actions-hugo/commit/b94c20b65d1926fb5cb0534acfa17b7df493dd01)), closes [#420](https://github.com/peaceiris/actions-hugo/issues/420) 293 | * bump prettier from 2.1.0 to 2.1.1 (#423) ([5a94243](https://github.com/peaceiris/actions-hugo/commit/5a94243d0517bf420266d6ffb22242a01b78bf57)), closes [#423](https://github.com/peaceiris/actions-hugo/issues/423) 294 | * bump prettier from 2.1.1 to 2.1.2 (#440) ([fe1c07b](https://github.com/peaceiris/actions-hugo/commit/fe1c07bf2734c9b8a15afb63935b1017386a1a4d)), closes [#440](https://github.com/peaceiris/actions-hugo/issues/440) 295 | * bump standard-version from 8.0.0 to 8.0.1 (#380) ([c83f108](https://github.com/peaceiris/actions-hugo/commit/c83f10804ea39b937ad407c2d32fdbbf4fd4c33a)), closes [#380](https://github.com/peaceiris/actions-hugo/issues/380) 296 | * bump standard-version from 8.0.1 to 8.0.2 (#382) ([483f8d1](https://github.com/peaceiris/actions-hugo/commit/483f8d1e3415ac3bf8da95136807f5f1649a9b14)), closes [#382](https://github.com/peaceiris/actions-hugo/issues/382) 297 | * bump standard-version from 8.0.2 to 9.0.0 (#413) ([444111b](https://github.com/peaceiris/actions-hugo/commit/444111b78ca0f838547e0d52086bd7ec6b4b99ad)), closes [#413](https://github.com/peaceiris/actions-hugo/issues/413) 298 | * bump typescript from 3.9.5 to 3.9.6 (#374) ([863939f](https://github.com/peaceiris/actions-hugo/commit/863939f1a75eefbae6e227e72b90de2a2e96852c)), closes [#374](https://github.com/peaceiris/actions-hugo/issues/374) 299 | * bump typescript from 3.9.6 to 3.9.7 (#384) ([87ff7f6](https://github.com/peaceiris/actions-hugo/commit/87ff7f6586ac91744342582f9c3030f0c4b72248)), closes [#384](https://github.com/peaceiris/actions-hugo/issues/384) 300 | * change @zeit/ncc to @vercel/ncc (#416) ([aba4ae3](https://github.com/peaceiris/actions-hugo/commit/aba4ae31955192d3944543150f99cf2e9365a1aa)), closes [#416](https://github.com/peaceiris/actions-hugo/issues/416) 301 | 302 | ### docs 303 | 304 | * Add Caching Hugo Modules ([18a809e](https://github.com/peaceiris/actions-hugo/commit/18a809e6c96de4cb534ad52f31dfe28ef32bd7d5)) 305 | * Add Code Scanning workflow badge ([3462f4d](https://github.com/peaceiris/actions-hugo/commit/3462f4d33fccdc8d712508ddddcebaa8ef5384df)) 306 | * add full docker image ([4245d14](https://github.com/peaceiris/actions-hugo/commit/4245d148471b602b24f602d8634fb289fe74ca90)) 307 | * add note about branch to deploy (#419) ([71168fa](https://github.com/peaceiris/actions-hugo/commit/71168fab79f89371c87c6175ddd208ffada9cf0e)), closes [#419](https://github.com/peaceiris/actions-hugo/issues/419) 308 | * bump hugo from 0.71.1 to 0.74.1 ([18a17a7](https://github.com/peaceiris/actions-hugo/commit/18a17a77a865be445d1ee0fbe251655fa53f8509)) 309 | * bump hugo from 0.74.1 to 0.74.2 ([89d2e2c](https://github.com/peaceiris/actions-hugo/commit/89d2e2c7e8c62e5c50d0deadcd5f163b80dae639)) 310 | * bump Hugo from 0.74.2 to 0.75.1 (#439) ([e091c92](https://github.com/peaceiris/actions-hugo/commit/e091c924f25bf7adb8a8662ace3b28429b1ae5c8)), closes [#439](https://github.com/peaceiris/actions-hugo/issues/439) 311 | 312 | 313 | 314 | ## [2.4.12](https://github.com/peaceiris/actions-hugo/compare/v2.4.11...v2.4.12) (2020-06-21) 315 | 316 | 317 | ### chore 318 | 319 | * Add CODEOWNERS ([75e0d6c](https://github.com/peaceiris/actions-hugo/commit/75e0d6c01d147a40a4ca4d546a35f0aa89977cd8)) 320 | * Enhance style ([07082d9](https://github.com/peaceiris/actions-hugo/commit/07082d9e3b019317c88ab12ee38807e476f9ae5c)) 321 | * Please follow the issue templates ([16b12f7](https://github.com/peaceiris/actions-hugo/commit/16b12f7dfe70a4b9d8a867616374a2b70b6cbd7d)) 322 | * Ported issue template ([2aa39a0](https://github.com/peaceiris/actions-hugo/commit/2aa39a0fb5fd48fb28b7fd4c1e41980674d291f4)) 323 | 324 | ### ci 325 | 326 | * Add hook for doctoc ([2357c76](https://github.com/peaceiris/actions-hugo/commit/2357c76e2abc2649fcab48eb899a8b2a617d371a)) 327 | * add is_skip [skip ci] ([c0e9f57](https://github.com/peaceiris/actions-hugo/commit/c0e9f57fdbd5049eb5e8d479c10b7d85bccaf21f)) 328 | * Add Label Commenter Action ([271b8c5](https://github.com/peaceiris/actions-hugo/commit/271b8c5d4e39f7019428366d9194fb75beb26a23)) 329 | * add package-ecosystem github-actions ([38bf1d2](https://github.com/peaceiris/actions-hugo/commit/38bf1d20d08732c5b05fafc7093258d87ae8733a)) 330 | * Add ubuntu-16.04 ([55117bd](https://github.com/peaceiris/actions-hugo/commit/55117bdfe7031543062c1a69e3f4ccf28bec9448)) 331 | * Add ubuntu-20.04 (#355) ([926e28d](https://github.com/peaceiris/actions-hugo/commit/926e28de4aa8dca25a718a1eb8c593a771b2c3b3)), closes [#355](https://github.com/peaceiris/actions-hugo/issues/355) 332 | * bump actions/setup-node from v1 to v2.0.0 (#359) ([41aa07a](https://github.com/peaceiris/actions-hugo/commit/41aa07a09a8f741e87bea9a2d763300f19702547)), closes [#359](https://github.com/peaceiris/actions-hugo/issues/359) 333 | * bump codecov/codecov-action from v1 to v1.0.7 (#358) ([0b3975d](https://github.com/peaceiris/actions-hugo/commit/0b3975d69013fa58ebe97813b1de53260d654712)), closes [#358](https://github.com/peaceiris/actions-hugo/issues/358) 334 | * Change update_type from all to semver:minor ([e4c9fb3](https://github.com/peaceiris/actions-hugo/commit/e4c9fb3020e200921210b2792ef39c5b70f335c6)) 335 | * Enhance test workflow (#301) ([0b128ac](https://github.com/peaceiris/actions-hugo/commit/0b128ac232579caa1e5817628f96aee1759a3627)), closes [#301](https://github.com/peaceiris/actions-hugo/issues/301) 336 | * fix labels of github-actions ([697e1b0](https://github.com/peaceiris/actions-hugo/commit/697e1b0bf943bedbb08f978b353956d591f38dc0)) 337 | * remove pull_request.types ([312bc2c](https://github.com/peaceiris/actions-hugo/commit/312bc2c8e4e0c8f0e297fabe335bd322edbb5a3b)) 338 | * remove skipci job ([998d851](https://github.com/peaceiris/actions-hugo/commit/998d85162e3e9752aabdf6e7a2dd2dcdd946881e)) 339 | * Update Dependabot config file (#345) ([f0d9378](https://github.com/peaceiris/actions-hugo/commit/f0d93788f5871d7f4cfa35da5c12cada1b9de16e)), closes [#345](https://github.com/peaceiris/actions-hugo/issues/345) 340 | 341 | ### deps 342 | 343 | * bump @actions/core from 1.2.3 to 1.2.4 ([aaaac3a](https://github.com/peaceiris/actions-hugo/commit/aaaac3ae9967a1f3277ceb6aab52070034ec3565)) 344 | * bump @actions/exec from 1.0.3 to 1.0.4 ([a098653](https://github.com/peaceiris/actions-hugo/commit/a098653b2f3a9ed5e9bb14ccbf32dfe70c3f4dd3)) 345 | * bump @actions/tool-cache from 1.3.4 to 1.3.5 ([9ba5218](https://github.com/peaceiris/actions-hugo/commit/9ba52187b56e1070eee5b8d28b899ed7317405f6)) 346 | * bump @actions/tool-cache from 1.3.5 to 1.5.5 (#333) ([3c2f87a](https://github.com/peaceiris/actions-hugo/commit/3c2f87a0bff49d8aed403dd586b84f128f9ba4fd)), closes [#333](https://github.com/peaceiris/actions-hugo/issues/333) 347 | * bump @types/jest from 25.2.1 to 25.2.2 ([4c11e4e](https://github.com/peaceiris/actions-hugo/commit/4c11e4e48a81e55ee0841a8018f16ec59f27ca20)) 348 | * bump @types/jest from 25.2.2 to 25.2.3 ([b1d5e3f](https://github.com/peaceiris/actions-hugo/commit/b1d5e3fb147bfbb9c89327b64067e4cde1b2ac84)) 349 | * bump @types/jest from 25.2.3 to 26.0.0 (#352) ([b18493f](https://github.com/peaceiris/actions-hugo/commit/b18493fdf7d73b960b320e49e1d5b83991e87c88)), closes [#352](https://github.com/peaceiris/actions-hugo/issues/352) 350 | * bump @types/node from 12.12.37 to 12.12.38 ([dc79cf9](https://github.com/peaceiris/actions-hugo/commit/dc79cf98c43e9310a1ab08bb501529d7ed6aaedc)) 351 | * bump @types/node from 12.12.38 to 12.12.41 ([89fc843](https://github.com/peaceiris/actions-hugo/commit/89fc843efbe601d77b00552cd75ef7a262f9560a)) 352 | * bump @types/node from 12.12.41 to 12.12.42 ([ad8ddd7](https://github.com/peaceiris/actions-hugo/commit/ad8ddd743ab4b5e555f93f960e2f9913624102ac)) 353 | * bump @types/node from 12.12.42 to 12.12.43 ([07ef174](https://github.com/peaceiris/actions-hugo/commit/07ef174ec463583d48557606ba0546543ff7a677)) 354 | * bump @types/node from 12.12.43 to 12.12.44 (#347) ([e92a791](https://github.com/peaceiris/actions-hugo/commit/e92a791bf30d2c682faf364d4d8658f944384d46)), closes [#347](https://github.com/peaceiris/actions-hugo/issues/347) 355 | * bump @types/node from 12.12.44 to 12.12.45 (#350) ([b5e2760](https://github.com/peaceiris/actions-hugo/commit/b5e2760b23b75985a5963549ef967ad204e0b44a)), closes [#350](https://github.com/peaceiris/actions-hugo/issues/350) 356 | * bump @types/node from 12.12.45 to 12.12.47 (#351) ([2f831ed](https://github.com/peaceiris/actions-hugo/commit/2f831edb58c1372ecf7707dd046cabece5687106)), closes [#351](https://github.com/peaceiris/actions-hugo/issues/351) 357 | * bump @typescript-eslint/eslint-plugin from 2.28.0 to 2.30.0 ([3e0138d](https://github.com/peaceiris/actions-hugo/commit/3e0138dbef3407a112e64881f1550c88456109e9)) 358 | * bump @typescript-eslint/eslint-plugin from 2.30.0 to 2.31.0 ([b92f084](https://github.com/peaceiris/actions-hugo/commit/b92f084f4595967244dc347624cfab55415b0bc1)) 359 | * bump @typescript-eslint/eslint-plugin from 2.31.0 to 2.32.0 ([9216be3](https://github.com/peaceiris/actions-hugo/commit/9216be3bc0ef12b561702f0a148c20b79f6834d2)) 360 | * bump @typescript-eslint/eslint-plugin from 2.32.0 to 2.33.0 ([66a332b](https://github.com/peaceiris/actions-hugo/commit/66a332b429091e28faebc300216f305e81c339f7)) 361 | * bump @typescript-eslint/eslint-plugin from 2.33.0 to 2.34.0 ([7e64f45](https://github.com/peaceiris/actions-hugo/commit/7e64f450a732b1336e2b46870c89d989cbf52d47)) 362 | * bump @typescript-eslint/parser from 2.30.0 to 2.31.0 ([b99a08a](https://github.com/peaceiris/actions-hugo/commit/b99a08a3b8e7dc0711f18e3c8180d1c8c873eb1b)) 363 | * bump @typescript-eslint/parser from 2.31.0 to 2.32.0 ([8c661f7](https://github.com/peaceiris/actions-hugo/commit/8c661f7d9b7ab8cf940148fde66a58a6befa6391)) 364 | * bump @typescript-eslint/parser from 2.32.0 to 2.33.0 ([012b11d](https://github.com/peaceiris/actions-hugo/commit/012b11dba4f2e38755c5acdfba1c4711f009c3ae)) 365 | * bump @typescript-eslint/parser from 2.33.0 to 2.34.0 ([271cee0](https://github.com/peaceiris/actions-hugo/commit/271cee08e77e64479d7282a1f7bba2733c1a5502)) 366 | * bump @zeit/ncc from 0.22.1 to 0.22.2 (#329) ([98135d2](https://github.com/peaceiris/actions-hugo/commit/98135d2cd0f2f4597c404384cafa03215fd01378)), closes [#329](https://github.com/peaceiris/actions-hugo/issues/329) 367 | * bump @zeit/ncc from 0.22.2 to 0.22.3 (#339) ([8f166cf](https://github.com/peaceiris/actions-hugo/commit/8f166cf07e4691d65b912ad2fef51aa3e5ff57fe)), closes [#339](https://github.com/peaceiris/actions-hugo/issues/339) 368 | * bump eslint-plugin-jest from 23.10.0 to 23.11.0 ([c264525](https://github.com/peaceiris/actions-hugo/commit/c264525a0ab2387ea6309d92576e7462c903a1f5)) 369 | * bump eslint-plugin-jest from 23.11.0 to 23.12.0 ([e6a0191](https://github.com/peaceiris/actions-hugo/commit/e6a01917e07ede5857ebc5e686249e8d3ff9a491)) 370 | * bump eslint-plugin-jest from 23.12.0 to 23.13.0 ([dd37fe2](https://github.com/peaceiris/actions-hugo/commit/dd37fe20fa14d9a38229a3d004c1db29de6a6e74)) 371 | * bump eslint-plugin-jest from 23.13.0 to 23.13.1 ([7d80e16](https://github.com/peaceiris/actions-hugo/commit/7d80e1641cfd813ce9387b4b9961a4e7845f31ec)) 372 | * bump eslint-plugin-jest from 23.13.1 to 23.13.2 ([b458469](https://github.com/peaceiris/actions-hugo/commit/b458469ce7b3a8dd28e7c9cd4428bbf293202e18)) 373 | * bump eslint-plugin-jest from 23.8.2 to 23.9.0 ([11b6ba4](https://github.com/peaceiris/actions-hugo/commit/11b6ba478ca58a02938a6d650d6d0a7a0637054e)) 374 | * bump eslint-plugin-jest from 23.9.0 to 23.10.0 ([ef0b1e0](https://github.com/peaceiris/actions-hugo/commit/ef0b1e0a8500c34dff72bb6e730a5d2d62db362f)) 375 | * bump git from 2.26.1 to 2.27.0 (#354) ([5420562](https://github.com/peaceiris/actions-hugo/commit/54205620eee116a6c8b2b43047be61fec3713f75)), closes [#354](https://github.com/peaceiris/actions-hugo/issues/354) 376 | * bump jest from 25.5.0 to 25.5.1 ([b9fb59f](https://github.com/peaceiris/actions-hugo/commit/b9fb59f829d2305d75c8d6f4acafa19d0f3c9376)) 377 | * bump jest from 25.5.1 to 25.5.2 ([b9569c2](https://github.com/peaceiris/actions-hugo/commit/b9569c27b6b33a0677dbb14f753b4494b7aa3ff1)) 378 | * bump jest from 25.5.2 to 25.5.3 ([815ceae](https://github.com/peaceiris/actions-hugo/commit/815ceae6cf2313a1c633cfc24648f08015101d49)) 379 | * bump jest from 25.5.3 to 25.5.4 ([b0c6103](https://github.com/peaceiris/actions-hugo/commit/b0c61036db0b2f5747405b1c2e29c262d3af6364)) 380 | * bump jest-circus from 25.5.0 to 25.5.1 ([a3c3e71](https://github.com/peaceiris/actions-hugo/commit/a3c3e71549f8f2b4d19e2a9c1908bc094d3c7964)) 381 | * bump jest-circus from 25.5.1 to 25.5.2 ([ed2a699](https://github.com/peaceiris/actions-hugo/commit/ed2a6998667974d53da9eb518d497f1842362413)) 382 | * bump jest-circus from 25.5.2 to 25.5.3 ([02e6a28](https://github.com/peaceiris/actions-hugo/commit/02e6a28e7e7ecfd74ba1de73a0e69cd9d32aa856)) 383 | * bump jest-circus from 25.5.3 to 25.5.4 ([9983819](https://github.com/peaceiris/actions-hugo/commit/9983819c7b12bf0b2199eefb45264ef96b2b86ec)) 384 | * bump jest-circus from 25.5.4 to 26.0.0 ([fc3f6e7](https://github.com/peaceiris/actions-hugo/commit/fc3f6e7cc9e9bbd4a31ba5644b44a40c4e092882)) 385 | * bump jest-circus from 26.0.0 to 26.0.1 ([4271d65](https://github.com/peaceiris/actions-hugo/commit/4271d65cbac605d9b9143a59ed77436a90328439)) 386 | * bump lint-staged from 10.1.6 to 10.2.0 ([5dbfe6b](https://github.com/peaceiris/actions-hugo/commit/5dbfe6b02fa7ea6c544a91b8c733f370eb781fe1)) 387 | * bump lint-staged from 10.2.0 to 10.2.1 ([97168f4](https://github.com/peaceiris/actions-hugo/commit/97168f4ffdc9120321ab81f3785ed883a0292da2)) 388 | * bump lint-staged from 10.2.1 to 10.2.2 ([466efd6](https://github.com/peaceiris/actions-hugo/commit/466efd6e327be8268c8e4f58b8dde51b571696b0)) 389 | * bump lint-staged from 10.2.10 to 10.2.11 (#357) ([4ec522d](https://github.com/peaceiris/actions-hugo/commit/4ec522dca345774f865ef33f624c622763dedbb8)), closes [#357](https://github.com/peaceiris/actions-hugo/issues/357) 390 | * bump lint-staged from 10.2.2 to 10.2.4 ([2cdb0da](https://github.com/peaceiris/actions-hugo/commit/2cdb0da4debc0c98061b4e09c6547ddd2db1834c)) 391 | * bump lint-staged from 10.2.4 to 10.2.6 ([b920e24](https://github.com/peaceiris/actions-hugo/commit/b920e249f6a1acb1fbff7ff6e8711916869a27c3)) 392 | * bump lint-staged from 10.2.6 to 10.2.7 ([592603c](https://github.com/peaceiris/actions-hugo/commit/592603c7c2a30e3a450363117c41a7ec358f2d06)) 393 | * bump lint-staged from 10.2.7 to 10.2.8 (#346) ([533dde8](https://github.com/peaceiris/actions-hugo/commit/533dde857531b95164d8d5f21462187e581618a9)), closes [#346](https://github.com/peaceiris/actions-hugo/issues/346) 394 | * bump lint-staged from 10.2.8 to 10.2.9 (#349) ([dcf08e2](https://github.com/peaceiris/actions-hugo/commit/dcf08e2fd2c712501ecb05cbc2005a1e4de06092)), closes [#349](https://github.com/peaceiris/actions-hugo/issues/349) 395 | * bump lint-staged from 10.2.9 to 10.2.10 (#356) ([914abda](https://github.com/peaceiris/actions-hugo/commit/914abda3d8422bc3d850bb3651f7540dd714036a)), closes [#356](https://github.com/peaceiris/actions-hugo/issues/356) 396 | * bump node from 12.16.1 to 12.16.3 (#288) ([32e3df2](https://github.com/peaceiris/actions-hugo/commit/32e3df2806a568e829146259abc0965797b6cf59)), closes [#288](https://github.com/peaceiris/actions-hugo/issues/288) 397 | * bump node from 12.16.3 to 12.18.0 (#353) ([09cf940](https://github.com/peaceiris/actions-hugo/commit/09cf94008e15f8629028e708ebf5049286556670)), closes [#353](https://github.com/peaceiris/actions-hugo/issues/353) 398 | * bump node from 12.18.0 to 12.18.1 (#360) ([7160613](https://github.com/peaceiris/actions-hugo/commit/71606133495c4ec46bff6f3096e9f98e62a24e05)), closes [#360](https://github.com/peaceiris/actions-hugo/issues/360) 399 | * bump standard-version from 7.1.0 to 8.0.0 ([73356f0](https://github.com/peaceiris/actions-hugo/commit/73356f0ae57cb8fb165a929f8e9637120334b86a)) 400 | * bump ts-jest from 25.4.0 to 25.5.0 ([0c93074](https://github.com/peaceiris/actions-hugo/commit/0c93074aabfd1477a93af132e2e6ca8b397919d9)) 401 | * bump ts-jest from 25.5.0 to 25.5.1 ([d7c46d0](https://github.com/peaceiris/actions-hugo/commit/d7c46d09c935763ad519d2f34290f4ac6be38ccb)) 402 | * bump typescript from 3.8.3 to 3.9.2 ([b555054](https://github.com/peaceiris/actions-hugo/commit/b55505415753f290f1e3e93b92826257bd21aaee)) 403 | * bump typescript from 3.9.2 to 3.9.3 ([d3ebe5d](https://github.com/peaceiris/actions-hugo/commit/d3ebe5d657f863b5879b6fb2df7e6ba6bb2e983f)) 404 | * bump typescript from 3.9.3 to 3.9.5 (#348) ([658d24b](https://github.com/peaceiris/actions-hugo/commit/658d24bb3e335ec5695aa87bc6b2c02cd78f0028)), closes [#348](https://github.com/peaceiris/actions-hugo/issues/348) 405 | 406 | ### docs 407 | 408 | * add Babel ([b99235e](https://github.com/peaceiris/actions-hugo/commit/b99235e60ed6e4cbf138aa9167f567a4a6c664e6)) 409 | * Add new section for asciidoctor ([71fe6db](https://github.com/peaceiris/actions-hugo/commit/71fe6dbc7f2bd0596392fe20805753a67b00af1f)), closes [#342](https://github.com/peaceiris/actions-hugo/issues/342) 410 | * Add new section for google/docsy ([e3045c5](https://github.com/peaceiris/actions-hugo/commit/e3045c5fb50cfbacbc0d9b9ce287d7e112f56e00)) 411 | * bump hugo from 0.68.3 to 0.71.0 ([cb3ccf6](https://github.com/peaceiris/actions-hugo/commit/cb3ccf6f428dc8320595af305c6531679b343eb1)) 412 | * bump hugo to 0.71.1 ([cb1a02b](https://github.com/peaceiris/actions-hugo/commit/cb1a02bb3535bef17b19b5811658d61b60377bcc)) 413 | * bump hugo to 0.71.1 ([ad41861](https://github.com/peaceiris/actions-hugo/commit/ad41861beb535cc414f8a2ff238b28aa334db49a)) 414 | * remove Dependabot status badge ([aa5de43](https://github.com/peaceiris/actions-hugo/commit/aa5de43b2b75066241428b66dcf9204351ab680b)) 415 | * update ToC ([dd33407](https://github.com/peaceiris/actions-hugo/commit/dd334074ce1f4f6c0e3599c0c913426bac4575fe)) 416 | * update url ([0f35b33](https://github.com/peaceiris/actions-hugo/commit/0f35b33b7371b0c4b115eeb0ea6acdb9cd2e0e78)) 417 | 418 | ### fix 419 | 420 | * Wrap an entrypoint by async to handle exceptions correctly (#363) ([54af4c1](https://github.com/peaceiris/actions-hugo/commit/54af4c1320eee4b2c9c6d46b4bede3f593b1bc50)), closes [#363](https://github.com/peaceiris/actions-hugo/issues/363) 421 | 422 | 423 | 424 | ## [2.4.11](https://github.com/peaceiris/actions-hugo/compare/v2.4.10...v2.4.11) (2020-04-29) 425 | 426 | 427 | ### ci 428 | 429 | * Add npm i -g npm ([9d657ea](https://github.com/peaceiris/actions-hugo/commit/9d657ea2ca451bcaf8c3f9d07b83cabda69cc211)) 430 | * delete Stale workflow ([260f1b8](https://github.com/peaceiris/actions-hugo/commit/260f1b862cb3e9057add124e356f8ad57a19678a)) 431 | * remove unused steps ([85093b6](https://github.com/peaceiris/actions-hugo/commit/85093b6a03b26aa8ff08319f044ca0d9213fd86f)) 432 | 433 | ### deps 434 | 435 | * bump @actions/tool-cache from 1.3.3 to 1.3.4 (#280) ([7b0270b](https://github.com/peaceiris/actions-hugo/commit/7b0270bcd541e18f3f8bc7113d5a0b0fd8daa9e7)), closes [#280](https://github.com/peaceiris/actions-hugo/issues/280) 436 | * bump @types/node from 12.12.35 to 12.12.36 ([e860645](https://github.com/peaceiris/actions-hugo/commit/e860645a6078954ac9977a7a26ec2de1471cc214)) 437 | * bump @types/node from 12.12.36 to 12.12.37 ([163bda6](https://github.com/peaceiris/actions-hugo/commit/163bda68c5ba75a0e100a0a73094de4682f9570f)) 438 | * bump @types/node-fetch from 2.5.6 to 2.5.7 ([fe712b2](https://github.com/peaceiris/actions-hugo/commit/fe712b2ec6b34f70a7a515061b0e3ea0aa5af09e)) 439 | * bump @typescript-eslint/parser from 2.28.0 to 2.30.0 ([3d3730e](https://github.com/peaceiris/actions-hugo/commit/3d3730eab2a06b569b59142cf64c6ffafb65860a)) 440 | * bump jest from 25.3.0 to 25.5.0 ([7747eb7](https://github.com/peaceiris/actions-hugo/commit/7747eb710e4e55e2f0cb438cc77e43a43f454978)) 441 | * bump jest-circus from 25.3.0 to 25.5.0 ([73611a6](https://github.com/peaceiris/actions-hugo/commit/73611a6693297105e7a091829327400099b77f8c)) 442 | * bump lint-staged from 10.1.3 to 10.1.4 ([dac5ba9](https://github.com/peaceiris/actions-hugo/commit/dac5ba9b16d4e2e49568d1f0f5f78edf3ae5ead6)) 443 | * bump lint-staged from 10.1.4 to 10.1.5 ([808c2c1](https://github.com/peaceiris/actions-hugo/commit/808c2c15d159869de692307d7675bc345bf4d5ab)) 444 | * bump lint-staged from 10.1.5 to 10.1.6 ([5cb844d](https://github.com/peaceiris/actions-hugo/commit/5cb844d4a880257a8fae7dd06a754997cc499b7a)) 445 | * bump prettier from 2.0.4 to 2.0.5 ([f9bbc5a](https://github.com/peaceiris/actions-hugo/commit/f9bbc5a9ad3363924f05399d86ead5457da0d10f)) 446 | * bump ts-jest from 25.3.1 to 25.4.0 ([4d44414](https://github.com/peaceiris/actions-hugo/commit/4d4441466ca7b6b69af762b07ac8649d918c9aca)) 447 | 448 | ### docs 449 | 450 | * Add link for the first deployment ([08ce241](https://github.com/peaceiris/actions-hugo/commit/08ce2418260b67becef3f05f3a2e0199616c018d)) 451 | 452 | 453 | 454 | ## [2.4.10](https://github.com/peaceiris/actions-hugo/compare/v2.4.9...v2.4.10) (2020-04-15) 455 | 456 | 457 | ### ci 458 | 459 | * Add automerged_updates ([4dadc2d](https://github.com/peaceiris/actions-hugo/commit/4dadc2dfbecb8c904f81871878c4dc7b9bfa8873)) 460 | * Add dependabot for auto-merging ([abb5843](https://github.com/peaceiris/actions-hugo/commit/abb58435605439b55727e3598e6f08d053379bba)) 461 | * add push event ([336da8a](https://github.com/peaceiris/actions-hugo/commit/336da8a2f242b90555daa9e99f8e8506db23b8b7)) 462 | * delete CODEOWNERS ([02db58a](https://github.com/peaceiris/actions-hugo/commit/02db58a779ac5de54af22f4b3a34c8db4fc5b646)) 463 | 464 | ### deps 465 | 466 | * bump @types/jest from 25.1.5 to 25.2.1 (#253) ([3498de4](https://github.com/peaceiris/actions-hugo/commit/3498de4687459e7dc0d7896ba9c1c1cbdfc6a2e9)), closes [#253](https://github.com/peaceiris/actions-hugo/issues/253) 467 | * bump @types/node from 12.12.34 to 12.12.35 ([fe90d2f](https://github.com/peaceiris/actions-hugo/commit/fe90d2f50f871eac7412103f3d63fd729e9c97ff)) 468 | * bump @types/node-fetch from 2.5.5 to 2.5.6 ([0815b8f](https://github.com/peaceiris/actions-hugo/commit/0815b8fb73cfc7f2db243f99638e2fe278c47d71)) 469 | * bump @typescript-eslint/eslint-plugin from 2.26.0 to 2.27.0 ([ea8d9db](https://github.com/peaceiris/actions-hugo/commit/ea8d9dba187dda369903a3f06c3a66d0c282402d)) 470 | * bump @typescript-eslint/eslint-plugin from 2.27.0 to 2.28.0 ([506aedd](https://github.com/peaceiris/actions-hugo/commit/506aeddc3aecc241027b6a0bc274f31549a0d38c)) 471 | * bump @typescript-eslint/parser from 2.26.0 to 2.27.0 ([acacbff](https://github.com/peaceiris/actions-hugo/commit/acacbff003c46f1865df3bf05a6e88665f6c157a)) 472 | * bump @typescript-eslint/parser from 2.27.0 to 2.28.0 ([009b47c](https://github.com/peaceiris/actions-hugo/commit/009b47c399ca8d8a8170d40e272f66b519895ab7)) 473 | * bump @zeit/ncc from 0.22.0 to 0.22.1 ([c66d90a](https://github.com/peaceiris/actions-hugo/commit/c66d90a3b24b74215c0a55631acdd167572cf68a)) 474 | * bump git from 2.26.0 to 2.26.1 (#269) ([05899bf](https://github.com/peaceiris/actions-hugo/commit/05899bf3aae5fe39b476e558d615dab85ebbdef0)), closes [#269](https://github.com/peaceiris/actions-hugo/issues/269) 475 | * bump husky from 4.2.3 to 4.2.4 ([3fce776](https://github.com/peaceiris/actions-hugo/commit/3fce7767508b7b22db2e8fbbe08c3bec09f8f1f9)) 476 | * bump husky from 4.2.4 to 4.2.5 ([cb7cd1e](https://github.com/peaceiris/actions-hugo/commit/cb7cd1e26db8fdc27cfcf859b78ee4b9220df99c)) 477 | * bump jest from 25.2.7 to 25.3.0 ([a75d5eb](https://github.com/peaceiris/actions-hugo/commit/a75d5eb670d46782f396aec949a7a37fc2c26f7f)) 478 | * bump jest-circus from 25.2.7 to 25.3.0 ([62ebf73](https://github.com/peaceiris/actions-hugo/commit/62ebf73d5f66b7a5e158e367402d920713349931)) 479 | * bump lint-staged from 10.1.1 to 10.1.2 ([7eea088](https://github.com/peaceiris/actions-hugo/commit/7eea08803f6a63bc1b101e690815483256fb3598)) 480 | * bump lint-staged from 10.1.2 to 10.1.3 ([4ea3b50](https://github.com/peaceiris/actions-hugo/commit/4ea3b500e2cbc247244e1681c42719eefc0f1f7f)) 481 | * bump prettier from 2.0.2 to 2.0.4 ([ea60fc1](https://github.com/peaceiris/actions-hugo/commit/ea60fc1ec2355decbf7b1aa5e841992163b23fa6)) 482 | 483 | ### docs 484 | 485 | * Add fetch-depth 0 ([c55729f](https://github.com/peaceiris/actions-hugo/commit/c55729fbd130889796da92d7859188dbbad0e32a)) 486 | * bump hugo to 0.68.3 ([949a480](https://github.com/peaceiris/actions-hugo/commit/949a480ff9a3e04d4baaa1197e745dee7ca21a2b)) 487 | 488 | 489 | 490 | ## [2.4.9](https://github.com/peaceiris/actions-hugo/compare/v2.4.8...v2.4.9) (2020-04-03) 491 | 492 | 493 | ### chore 494 | 495 | * remove extra line [skip ci] (#239) ([b5b805b](https://github.com/peaceiris/actions-hugo/commit/b5b805beb99c69f65aee66539aa24ea533c83a34)), closes [#239](https://github.com/peaceiris/actions-hugo/issues/239) 496 | 497 | ### ci 498 | 499 | * comment out push event [skip ci] ([c34a46e](https://github.com/peaceiris/actions-hugo/commit/c34a46e748f8122acf9951ab042887d3eecea3fe)) 500 | * npm audit fix ([9229d6e](https://github.com/peaceiris/actions-hugo/commit/9229d6ea61a701010ce3a89cf6ab37bc33b163de)) 501 | 502 | ### deps 503 | 504 | * bump @types/jest from 25.1.4 to 25.1.5 ([f5dac6e](https://github.com/peaceiris/actions-hugo/commit/f5dac6efe37fa47776500cfec0fa75b9f913cd4b)) 505 | * bump @types/node from 12.12.31 to 12.12.32 ([050ab4f](https://github.com/peaceiris/actions-hugo/commit/050ab4fa3cac4e36e51f7b95d33e1cb19cc87921)) 506 | * bump @types/node from 12.12.32 to 12.12.34 ([f73a43a](https://github.com/peaceiris/actions-hugo/commit/f73a43a95bc9d30eb22c2b87eea4cd76609863f0)) 507 | * bump @typescript-eslint/eslint-plugin from 2.25.0 to 2.26.0 ([5a904d4](https://github.com/peaceiris/actions-hugo/commit/5a904d42d558d16a4ba79c0ec28da41ba8303900)) 508 | * bump @typescript-eslint/parser from 2.25.0 to 2.26.0 ([0b1622d](https://github.com/peaceiris/actions-hugo/commit/0b1622da20405a63cd46c25ddb11cdb7a79fe6d9)) 509 | * bump jest from 25.2.3 to 25.2.4 ([050785a](https://github.com/peaceiris/actions-hugo/commit/050785a91cf309a578671ef29ef93491d89a2414)) 510 | * bump jest from 25.2.4 to 25.2.6 ([d242ef0](https://github.com/peaceiris/actions-hugo/commit/d242ef0982267bae74be58f9aa0da578e57e801c)) 511 | * bump jest from 25.2.6 to 25.2.7 ([43a340f](https://github.com/peaceiris/actions-hugo/commit/43a340f6cd1dd9ae05d83be0a4ef097a6308687c)) 512 | * bump jest-circus from 25.2.3 to 25.2.4 ([6486bc9](https://github.com/peaceiris/actions-hugo/commit/6486bc9a783f4c9394d41e848df7d3a206540b2b)) 513 | * bump jest-circus from 25.2.4 to 25.2.6 ([86cd995](https://github.com/peaceiris/actions-hugo/commit/86cd9953223bb8bc1049645c64b22e00594e2dde)) 514 | * bump jest-circus from 25.2.6 to 25.2.7 ([add0e7c](https://github.com/peaceiris/actions-hugo/commit/add0e7c0517a4da4b6cf9eaf2bc41225c72f6e6c)) 515 | * bump lint-staged from 10.0.10 to 10.1.0 ([c581b13](https://github.com/peaceiris/actions-hugo/commit/c581b131a63d283423756e0e72c9f4d316b99258)) 516 | * bump lint-staged from 10.0.9 to 10.0.10 ([e04f62b](https://github.com/peaceiris/actions-hugo/commit/e04f62b1a543ca757ca4db2ec74c52a9a500cbd2)) 517 | * bump lint-staged from 10.1.0 to 10.1.1 ([8a97893](https://github.com/peaceiris/actions-hugo/commit/8a97893cfe21fd03db36a5e406dc16ef1b129cb5)) 518 | * bump ts-jest from 25.2.1 to 25.3.0 ([72aae03](https://github.com/peaceiris/actions-hugo/commit/72aae0311c83d3064efa311c4ab8d3ee617c8929)) 519 | * bump ts-jest from 25.3.0 to 25.3.1 ([a6a0f2f](https://github.com/peaceiris/actions-hugo/commit/a6a0f2f7a8d6186ba698daee4f62018cc9c7cffc)) 520 | * npm audit fix ([c80eb16](https://github.com/peaceiris/actions-hugo/commit/c80eb16e094405a99316e90ad2cd0eedbe08f459)) 521 | 522 | ### docs 523 | 524 | * Add link to interview (#234) ([ce3c331](https://github.com/peaceiris/actions-hugo/commit/ce3c3313741e14aceee0972bd1747b6606d6b4a0)), closes [#234](https://github.com/peaceiris/actions-hugo/issues/234) 525 | 526 | 527 | 528 | ## [2.4.8](https://github.com/peaceiris/actions-hugo/compare/v2.4.7...v2.4.8) (2020-03-27) 529 | 530 | 531 | ### ci 532 | 533 | * Add workflow for developing container (#231) ([b71ad2d](https://github.com/peaceiris/actions-hugo/commit/b71ad2d01404ec9d8cf12979cca37d47310e9aa7)), closes [#231](https://github.com/peaceiris/actions-hugo/issues/231) 534 | * set update_schedule live ([61937d1](https://github.com/peaceiris/actions-hugo/commit/61937d118fd2de55dd288ee18edabb0e9f9d11e0)) 535 | 536 | ### deps 537 | 538 | * bump @types/node from 12.12.30 to 12.12.31 ([64135da](https://github.com/peaceiris/actions-hugo/commit/64135da123255189740dea81571630c0d8fcf7e7)) 539 | * bump @typescript-eslint/eslint-plugin from 2.23.0 to 2.24.0 ([2935a38](https://github.com/peaceiris/actions-hugo/commit/2935a38e763ed8cd23c43ba95236eeb811f659f9)) 540 | * bump @typescript-eslint/eslint-plugin from 2.24.0 to 2.25.0 ([b9b88c0](https://github.com/peaceiris/actions-hugo/commit/b9b88c049f68fdd1e11e50212923d07eb22967e1)) 541 | * bump @typescript-eslint/parser from 2.23.0 to 2.24.0 (#213) ([8807669](https://github.com/peaceiris/actions-hugo/commit/88076695a918ea1419ddeec9e16ba30e9faf4134)), closes [#213](https://github.com/peaceiris/actions-hugo/issues/213) 542 | * bump @typescript-eslint/parser from 2.24.0 to 2.25.0 ([6bed412](https://github.com/peaceiris/actions-hugo/commit/6bed4121ee5d7bd8a3e22c856261b59b442f8193)) 543 | * bump @zeit/ncc from 0.21.1 to 0.22.0 ([c3a324f](https://github.com/peaceiris/actions-hugo/commit/c3a324ff3cf3e1b975c594d266ba4c7bd09daa19)) 544 | * bump jest from 25.1.0 to 25.2.0 ([d7620db](https://github.com/peaceiris/actions-hugo/commit/d7620db17f5b0b91867f71d01874a879651a727b)) 545 | * bump jest from 25.2.0 to 25.2.1 ([8cd28fc](https://github.com/peaceiris/actions-hugo/commit/8cd28fc857360a781d9ebd7103da74c17d4a2ce7)) 546 | * bump jest from 25.2.1 to 25.2.2 ([601b110](https://github.com/peaceiris/actions-hugo/commit/601b110315ada15bc46842682625b71a0be1902c)) 547 | * bump jest from 25.2.2 to 25.2.3 ([1649bea](https://github.com/peaceiris/actions-hugo/commit/1649bea4d0a67e4b6af6ed2b95fea1e66673239b)) 548 | * bump jest-circus from 25.1.0 to 25.2.0 ([702a3e4](https://github.com/peaceiris/actions-hugo/commit/702a3e4c9ae5cf3ce9e380e45504d2b28e0dcc46)) 549 | * bump jest-circus from 25.2.0 to 25.2.1 ([c1f3690](https://github.com/peaceiris/actions-hugo/commit/c1f369064cf05c10277655226e2a4723266d7161)) 550 | * bump jest-circus from 25.2.1 to 25.2.2 ([1bafab6](https://github.com/peaceiris/actions-hugo/commit/1bafab6d5aa5d524d86e28cf6bcb8c41a09cc51d)) 551 | * bump jest-circus from 25.2.2 to 25.2.3 ([a2600d5](https://github.com/peaceiris/actions-hugo/commit/a2600d572b522fb75cd38aba6b6306501618579d)) 552 | * bump lint-staged from 10.0.8 to 10.0.9 ([35eb187](https://github.com/peaceiris/actions-hugo/commit/35eb187a3cd1e2b3370f881bfc97396d483585f8)) 553 | * bump nock from 12.0.2 to 12.0.3 ([a3f7ea4](https://github.com/peaceiris/actions-hugo/commit/a3f7ea4140f3f85196f7ea5d76bd2eeb5524a646)) 554 | * bump prettier from 1.19.1 to 2.0.1 ([da65b73](https://github.com/peaceiris/actions-hugo/commit/da65b73f4d4d3f23a392b882cb81c6538dda23b0)) 555 | * bump prettier from 2.0.1 to 2.0.2 ([9b11300](https://github.com/peaceiris/actions-hugo/commit/9b11300647ddf5ce6c42733e335be78e5ae855b6)) 556 | * node from 12.15.0 to 12.16.1 (#232) ([e470a76](https://github.com/peaceiris/actions-hugo/commit/e470a760d3eda16dddba7bcf4c66a3ae371c61f2)), closes [#232](https://github.com/peaceiris/actions-hugo/issues/232) 557 | 558 | ### docs 559 | 560 | * Add codeclimate badge ([c69c549](https://github.com/peaceiris/actions-hugo/commit/c69c549ff8c5106c435657fba74f76cb807db1ec)) 561 | * bump actions/checkout to v2 ([33d3f73](https://github.com/peaceiris/actions-hugo/commit/33d3f73fc7bb54a2fe21cdeee8e93881c3094b92)) 562 | * update notes ([4cd0877](https://github.com/peaceiris/actions-hugo/commit/4cd0877e8793c755e53b341fa5fe43801f9319a2)) 563 | 564 | 565 | 566 | ## [2.4.7](https://github.com/peaceiris/actions-hugo/compare/v2.4.6...v2.4.7) (2020-03-13) 567 | 568 | 569 | ### ci 570 | 571 | * update script link [skip ci] ([3d71d24](https://github.com/peaceiris/actions-hugo/commit/3d71d2403d36fe0c2770d1a69526ca5d8ba884c5)) 572 | 573 | ### deps 574 | 575 | * [security] bump acorn from 6.4.0 to 6.4.1 ([ea7a8f0](https://github.com/peaceiris/actions-hugo/commit/ea7a8f03436f5eefe2b0509210f62bb60eb645ce)) 576 | * bump @actions/core from 1.2.2 to 1.2.3 ([cc6e883](https://github.com/peaceiris/actions-hugo/commit/cc6e8832e8df3d38ea15016148e7499d67595412)) 577 | * bump @actions/tool-cache from 1.3.1 to 1.3.2 ([c6512d4](https://github.com/peaceiris/actions-hugo/commit/c6512d44a3620fbc3158c62e47d6a3e1a8a0696d)) 578 | * bump @actions/tool-cache from 1.3.2 to 1.3.3 ([0d2e118](https://github.com/peaceiris/actions-hugo/commit/0d2e11837b439e036687b3766548fe67efe14e04)) 579 | * bump @types/jest from 25.1.3 to 25.1.4 ([d17d509](https://github.com/peaceiris/actions-hugo/commit/d17d5099d67ed8aca0af28f612ffa36a2751b013)) 580 | * bump @types/node from 12.12.28 to 12.12.29 ([bc46e40](https://github.com/peaceiris/actions-hugo/commit/bc46e4063a096f87cc0faaf107b160c4686b9462)) 581 | * bump @types/node from 12.12.29 to 12.12.30 ([de4f7b1](https://github.com/peaceiris/actions-hugo/commit/de4f7b11367e07ace82f9ada91775cfbb03b88da)) 582 | * bump @typescript-eslint/eslint-plugin from 2.21.0 to 2.22.0 ([4ce8f62](https://github.com/peaceiris/actions-hugo/commit/4ce8f62edb9e86b50989996e17b6a8ed20b30a4b)) 583 | * bump @typescript-eslint/eslint-plugin from 2.22.0 to 2.23.0 ([844e33d](https://github.com/peaceiris/actions-hugo/commit/844e33d4107bfb7ab1cc21f6a4fab8b51bf441b1)) 584 | * bump @typescript-eslint/parser from 2.21.0 to 2.22.0 ([0a1c87e](https://github.com/peaceiris/actions-hugo/commit/0a1c87ea74e0cdf3a147e464f7814576f07a46bf)) 585 | * bump @typescript-eslint/parser from 2.22.0 to 2.23.0 ([703c21f](https://github.com/peaceiris/actions-hugo/commit/703c21fa41ab2b6f1c71a6bdbc4f795eff75abea)) 586 | * bump eslint-plugin-jest from 23.8.0 to 23.8.1 (#198) ([f48589d](https://github.com/peaceiris/actions-hugo/commit/f48589d80e2cf825cef0479d547f2767a2bf9414)), closes [#198](https://github.com/peaceiris/actions-hugo/issues/198) 587 | * bump eslint-plugin-jest from 23.8.1 to 23.8.2 ([f9fbf81](https://github.com/peaceiris/actions-hugo/commit/f9fbf81b0c07b5293e596585fc22b49e40d818ec)) 588 | * bump hub 2.14.1 to 2.14.2 ([61f1757](https://github.com/peaceiris/actions-hugo/commit/61f1757c8c728f8fd8e8e96f56b81171e007ef28)) 589 | * bump nock from 12.0.1 to 12.0.2 ([c430dce](https://github.com/peaceiris/actions-hugo/commit/c430dcefd1e96d100f28c2a8e5b5084a84fe2c0d)) 590 | * bump typescript from 3.8.2 to 3.8.3 ([9026a94](https://github.com/peaceiris/actions-hugo/commit/9026a9453330ef8189b318c2339c250ea05c5947)) 591 | 592 | 593 | 594 | ## [2.4.6](https://github.com/peaceiris/actions-hugo/compare/v2.4.5...v2.4.6) (2020-02-26) 595 | 596 | 597 | ### deps 598 | 599 | * bump @types/jest from 25.1.1 to 25.1.2 ([da0b7ac](https://github.com/peaceiris/actions-hugo/commit/da0b7ac273fb7fc345e8a98c58e620b7f85df2f5)) 600 | * bump @types/jest from 25.1.2 to 25.1.3 ([45ee73c](https://github.com/peaceiris/actions-hugo/commit/45ee73c48da3bd070b8e8a1f9bfed354e6e50c82)) 601 | * bump @types/node from 12.12.27 to 12.12.28 ([4eed9e4](https://github.com/peaceiris/actions-hugo/commit/4eed9e47590cb859dcc19bd396d1360b45813dda)) 602 | * bump @types/node from 13.7.0 to 13.7.1 ([9d826a4](https://github.com/peaceiris/actions-hugo/commit/9d826a479b558de962af26211fc1a3e2ae6d7b92)) 603 | * bump @types/node from 13.7.1 to 13.7.2 ([f3bcf96](https://github.com/peaceiris/actions-hugo/commit/f3bcf965479d21716fcdb4c6b459562b13892a4a)) 604 | * bump @types/node-fetch from 2.5.4 to 2.5.5 ([a8e5979](https://github.com/peaceiris/actions-hugo/commit/a8e5979167c907a9253458eb96b7b3281f055722)) 605 | * bump @typescript-eslint/eslint-plugin from 2.19.0 to 2.19.2 ([d56d87b](https://github.com/peaceiris/actions-hugo/commit/d56d87baca65a2ba667e218745e6409fc8ad6fcf)) 606 | * bump @typescript-eslint/eslint-plugin from 2.19.2 to 2.20.0 ([266cd0f](https://github.com/peaceiris/actions-hugo/commit/266cd0f3511e7ae5949d408a7374f7cf418420cd)) 607 | * bump @typescript-eslint/eslint-plugin from 2.20.0 to 2.21.0 ([5fcc41d](https://github.com/peaceiris/actions-hugo/commit/5fcc41dbee64328185c1450e01b5ec5c7bb7e7e8)) 608 | * bump @typescript-eslint/parser from 2.19.0 to 2.19.2 ([6b6e84e](https://github.com/peaceiris/actions-hugo/commit/6b6e84ed73751418f2c94fe50e135960082c51af)) 609 | * bump @typescript-eslint/parser from 2.19.2 to 2.20.0 ([2331ecd](https://github.com/peaceiris/actions-hugo/commit/2331ecd7332e9b1d816565a6faecf4b1f0e3f0d2)) 610 | * bump @typescript-eslint/parser from 2.20.0 to 2.21.0 ([bb9d9fa](https://github.com/peaceiris/actions-hugo/commit/bb9d9fa49a8dde93d1121211f8fe140c6f85794d)) 611 | * bump @zeit/ncc from 0.21.0 to 0.21.1 ([ef069a5](https://github.com/peaceiris/actions-hugo/commit/ef069a5b5b3305eebd68c97222f27a4b7eff8187)) 612 | * bump eslint-plugin-jest from 23.6.0 to 23.7.0 ([f802d7f](https://github.com/peaceiris/actions-hugo/commit/f802d7f38d757aa9d19596ede8783cc21687fc0d)) 613 | * bump eslint-plugin-jest from 23.7.0 to 23.8.0 ([cb4de30](https://github.com/peaceiris/actions-hugo/commit/cb4de30fad3d0414055024a3a0d460b1e8ec39ec)) 614 | * bump husky from 4.2.1 to 4.2.3 ([07c50af](https://github.com/peaceiris/actions-hugo/commit/07c50afccc821b24526b6c6257f65ba17a4bb727)) 615 | * bump lint-staged from 10.0.7 to 10.0.8 ([1972405](https://github.com/peaceiris/actions-hugo/commit/1972405991185de2af9d20fcf69786268e52039c)) 616 | * bump nock from 11.7.2 to 11.8.2 ([8095fcb](https://github.com/peaceiris/actions-hugo/commit/8095fcb0f41d1541ef1d84e019cb67f9e9595e85)) 617 | * bump nock from 11.8.2 to 12.0.0 ([4a12696](https://github.com/peaceiris/actions-hugo/commit/4a12696aca76ef260d0b7a55d1290c2b778ddfdb)) 618 | * bump nock from 12.0.0 to 12.0.1 ([231e402](https://github.com/peaceiris/actions-hugo/commit/231e4029187d257cc58b840ed341257b4b20e288)) 619 | * bump node from 12.14.1 to 12.15.0 (#172) ([8850dd5](https://github.com/peaceiris/actions-hugo/commit/8850dd5d86b98f7f80c761547cd73ce9df779127)), closes [#172](https://github.com/peaceiris/actions-hugo/issues/172) 620 | * bump ts-jest from 25.2.0 to 25.2.1 ([4de9b09](https://github.com/peaceiris/actions-hugo/commit/4de9b09ee49dc89ca2d9a914f99020b6392580eb)) 621 | * bump typescript from 3.7.5 to 3.8.2 ([81b5611](https://github.com/peaceiris/actions-hugo/commit/81b5611b7c835dabe63ae1700be5719f276debf4)) 622 | * Rollback types/node 13 to 12 (#185) ([75c9bc6](https://github.com/peaceiris/actions-hugo/commit/75c9bc6dc7f95893877154254cd001d8b5ebe76a)), closes [#185](https://github.com/peaceiris/actions-hugo/issues/185) 623 | 624 | ### docs 625 | 626 | * Add note about actions/checkout@v2 ([b9e10c3](https://github.com/peaceiris/actions-hugo/commit/b9e10c3e30353f050fbad487660f9dd198c32662)) 627 | * update ([88ecc3f](https://github.com/peaceiris/actions-hugo/commit/88ecc3f3da2d10d3aa78000a27da4490493e81cb)) 628 | * use github_token ([41b2600](https://github.com/peaceiris/actions-hugo/commit/41b2600c915a0e5a3e0b2fc0fa178e65e311152a)) 629 | * use peaceiris/actions-gh-pages@v3 ([38f8dc8](https://github.com/peaceiris/actions-hugo/commit/38f8dc8ba89e5b6143d0c921b049481c011aa0a7)) 630 | 631 | 632 | 633 | ## [2.4.5](https://github.com/peaceiris/actions-hugo/compare/v2.4.4...v2.4.5) (2020-02-04) 634 | 635 | 636 | ### chore 637 | 638 | * Add engines field ([aeba654](https://github.com/peaceiris/actions-hugo/commit/aeba6547bbb28e39b29e7d03f6978c80d6c09931)) 639 | 640 | ### deps 641 | 642 | * bump @types/jest from 25.1.0 to 25.1.1 ([f18cf68](https://github.com/peaceiris/actions-hugo/commit/f18cf68aea6a7d00504e6335efedb30a14f8c021)) 643 | * bump @types/node from 13.5.0 to 13.5.1 ([a9aa73f](https://github.com/peaceiris/actions-hugo/commit/a9aa73f7b42aadd8e6bbbf77ad51143b99f18e40)) 644 | * bump @types/node from 13.5.1 to 13.5.2 ([aed27b9](https://github.com/peaceiris/actions-hugo/commit/aed27b97077aed97ef3c9e27ee7066a5a7a55c40)) 645 | * bump @types/node from 13.5.2 to 13.5.3 ([e8c9424](https://github.com/peaceiris/actions-hugo/commit/e8c9424357a611602420145f8f289752b2521863)) 646 | * bump @types/node from 13.5.3 to 13.7.0 ([e375f4f](https://github.com/peaceiris/actions-hugo/commit/e375f4fff3fc25ace239150a37912746292b4e67)) 647 | * bump @typescript-eslint/eslint-plugin from 2.18.0 to 2.19.0 ([3907220](https://github.com/peaceiris/actions-hugo/commit/3907220f13b04e23a4d300439cdc11b05ea034c1)) 648 | * bump @typescript-eslint/parser from 2.18.0 to 2.19.0 (#170) ([747598e](https://github.com/peaceiris/actions-hugo/commit/747598e8dc8f2f8ea8c3a8964531e3c7fa1b11d7)), closes [#170](https://github.com/peaceiris/actions-hugo/issues/170) 649 | * bump lint-staged from 10.0.3 to 10.0.4 ([4f359ec](https://github.com/peaceiris/actions-hugo/commit/4f359ec551fa404b81d7a5832b16a3729874c611)) 650 | * bump lint-staged from 10.0.4 to 10.0.5 ([2fb0c15](https://github.com/peaceiris/actions-hugo/commit/2fb0c15ce023c9b4831e1acab7d97c0ba50d5a9d)) 651 | * bump lint-staged from 10.0.5 to 10.0.6 ([aa532f2](https://github.com/peaceiris/actions-hugo/commit/aa532f2f962cb4c9473f59fd4adbf67f4bfc3554)) 652 | * bump lint-staged from 10.0.6 to 10.0.7 ([ac7a2d6](https://github.com/peaceiris/actions-hugo/commit/ac7a2d661b0cb2b28f9967e2c65567f3b6ef9abc)) 653 | * bump ts-jest from 25.0.0 to 25.1.0 ([24f14e4](https://github.com/peaceiris/actions-hugo/commit/24f14e4ba907ee0920a608a0cf204387f1a26d53)) 654 | * bump ts-jest from 25.1.0 to 25.2.0 ([022950c](https://github.com/peaceiris/actions-hugo/commit/022950c85b46b0e873e66b5d6732b02ea09aa566)) 655 | 656 | ### docs 657 | 658 | * add Dependabot badge ([40cba97](https://github.com/peaceiris/actions-hugo/commit/40cba97ea7d81fcbaccd754f9d4e2f28db6afbf3)) 659 | 660 | 661 | 662 | ## [2.4.4](https://github.com/peaceiris/actions-hugo/compare/v2.4.3...v2.4.4) (2020-01-28) 663 | 664 | 665 | ### chore 666 | 667 | * ignore failure ([7c0de2d](https://github.com/peaceiris/actions-hugo/commit/7c0de2ddec0ad6a617eed9a78836b75151c9f870)) 668 | * update git (#150) ([c00fd7b](https://github.com/peaceiris/actions-hugo/commit/c00fd7be83dad02c1e07a09bfb526a3e2d67fa75)), closes [#150](https://github.com/peaceiris/actions-hugo/issues/150) 669 | * update name ([8f4af8f](https://github.com/peaceiris/actions-hugo/commit/8f4af8fa35a55337783683108d969c57a9541dae)) 670 | 671 | ### ci 672 | 673 | * remove operations-per-run ([de65f3e](https://github.com/peaceiris/actions-hugo/commit/de65f3e1283667e67fe0676a6498d02951ee22d5)) 674 | * use github/hub install script [skip ci] ([7e8dab4](https://github.com/peaceiris/actions-hugo/commit/7e8dab4a1585bb1241a44c53eeae4acc25fe0661)) 675 | 676 | ### deps 677 | 678 | * bump @types/jest from 24.9.1 to 25.1.0 ([02c9024](https://github.com/peaceiris/actions-hugo/commit/02c90246b441e21119ffe228b29c43ac443ca688)) 679 | * bump @typescript-eslint/eslint-plugin from 2.17.0 to 2.18.0 ([a1b1127](https://github.com/peaceiris/actions-hugo/commit/a1b1127907729bf5a7533f63111feaf16919ee1b)) 680 | * bump @typescript-eslint/parser from 2.17.0 to 2.18.0 ([6812c21](https://github.com/peaceiris/actions-hugo/commit/6812c21f1895dbef58aca3a976d0d3852d660dd0)) 681 | * bump lint-staged from 10.0.2 to 10.0.3 ([5000d1a](https://github.com/peaceiris/actions-hugo/commit/5000d1a8b64a136a7350b3f3debc93fb21872a06)) 682 | 683 | ### docs 684 | 685 | * Add release feed badge ([b8b4d74](https://github.com/peaceiris/actions-hugo/commit/b8b4d743819166af3ff7f530bbdc6d3480913cb9)) 686 | * update badge ([63038f3](https://github.com/peaceiris/actions-hugo/commit/63038f397f199600101c79aca6bc505c8718d1b7)) 687 | 688 | ### fix 689 | 690 | * action failure status (#151) ([9485334](https://github.com/peaceiris/actions-hugo/commit/94853340b9510c41a18016dbaa8d41e42044300c)), closes [#151](https://github.com/peaceiris/actions-hugo/issues/151) [#149](https://github.com/peaceiris/actions-hugo/issues/149) 691 | 692 | 693 | 694 | ## [2.4.3](https://github.com/peaceiris/actions-hugo/compare/v2.4.2...v2.4.3) (2020-01-24) 695 | 696 | 697 | ### chore 698 | 699 | * Change update_schedule from weekly to daily ([737fda5](https://github.com/peaceiris/actions-hugo/commit/737fda5741cb12d8992d4c75e249bd0392e162a7)) 700 | 701 | ### deps 702 | 703 | * bump @actions/core from 1.2.1 to 1.2.2 ([6e5afb7](https://github.com/peaceiris/actions-hugo/commit/6e5afb7c2e3739813acca54db234f1c13cf1e596)) 704 | * bump @actions/tool-cache from 1.3.0 to 1.3.1 ([46a6a3a](https://github.com/peaceiris/actions-hugo/commit/46a6a3afdff838a10f9f9e063170cfc02c197611)) 705 | 706 | 707 | 708 | ## [2.4.2](https://github.com/peaceiris/actions-hugo/compare/v2.4.1...v2.4.2) (2020-01-23) 709 | 710 | 711 | ### ci 712 | 713 | * Add codecov/codecov-action@v1 (#136) ([94ce32e](https://github.com/peaceiris/actions-hugo/commit/94ce32ea1b2965037ef7bbec618476ed6ad7b9e6)), closes [#136](https://github.com/peaceiris/actions-hugo/issues/136) 714 | * Add Hugo version dump step ([7a50ddc](https://github.com/peaceiris/actions-hugo/commit/7a50ddc6941e49c88a35080315a84a684c825347)) 715 | * Add operations-per-run 1 ([b6a7551](https://github.com/peaceiris/actions-hugo/commit/b6a75519788da01712462416009e656ec0b9cc8d)) 716 | 717 | ### deps 718 | 719 | * bump @types/jest from 24.9.0 to 24.9.1 ([2550d0e](https://github.com/peaceiris/actions-hugo/commit/2550d0ecb023988fa8061c6270a46e9d67bb84dc)) 720 | * bump @types/node from 13.1.8 to 13.5.0 ([8d85402](https://github.com/peaceiris/actions-hugo/commit/8d854027489e6b4b9130701c3a826185aca6bfae)) 721 | * bump @typescript-eslint/eslint-plugin from 2.16.0 to 2.17.0 ([66d664b](https://github.com/peaceiris/actions-hugo/commit/66d664bedd9b4a5d5004dc4023557305c4d69d97)) 722 | * bump @typescript-eslint/parser from 2.16.0 to 2.17.0 (#144) ([692ded2](https://github.com/peaceiris/actions-hugo/commit/692ded22845285c58250414c6389365f01229c49)), closes [#144](https://github.com/peaceiris/actions-hugo/issues/144) 723 | * bump husky from 4.0.10 to 4.2.1 ([e973221](https://github.com/peaceiris/actions-hugo/commit/e9732216ceb5db53dac31f61b0bb7d03db346f3a)) 724 | * bump jest and ts-jest ([3315ca8](https://github.com/peaceiris/actions-hugo/commit/3315ca857b7ee10f6c9de622898e44583fd81132)) 725 | * bump jest-circus from 24.9.0 to 25.1.0 ([b4a0e8b](https://github.com/peaceiris/actions-hugo/commit/b4a0e8ba604f9aeccee1f7b409870b3605de8544)) 726 | * bump lint-staged from 10.0.0 to 10.0.2 ([87e38e2](https://github.com/peaceiris/actions-hugo/commit/87e38e224d4a8f50a19dc9904c0bb85f707197bd)) 727 | * bump standard-version from 7.0.1 to 7.1.0 (#145) ([699805b](https://github.com/peaceiris/actions-hugo/commit/699805b6e156fb30665896aa7c1cbbca130a1364)), closes [#145](https://github.com/peaceiris/actions-hugo/issues/145) 728 | * update ([3317963](https://github.com/peaceiris/actions-hugo/commit/3317963a656646a401fcf4d1420b50f5908e3be0)) 729 | 730 | ### docs 731 | 732 | * Add Codecov badge ([0311892](https://github.com/peaceiris/actions-hugo/commit/0311892edd4e91aac6a95a003243e44ad3a54fe0)) 733 | * Update action execution time ([a79f520](https://github.com/peaceiris/actions-hugo/commit/a79f520addd8c317fcb9b29e8ecc4a8b0ecc43ae)) 734 | 735 | ### style 736 | 737 | * remove extra whitespace [skip ci] ([4fb2901](https://github.com/peaceiris/actions-hugo/commit/4fb290162762a7f823fcab1984966da8d8aed547)) 738 | 739 | ### test 740 | 741 | * Add fail to fetch latest due to 404 (#137) ([b55f1c8](https://github.com/peaceiris/actions-hugo/commit/b55f1c81fb24bc6149b3a7ec4cb9aa6c9596e877)), closes [#137](https://github.com/peaceiris/actions-hugo/issues/137) 742 | 743 | 744 | 745 | ## [2.4.1](https://github.com/peaceiris/actions-hugo/compare/v2.4.0...v2.4.1) (2020-01-18) 746 | 747 | 748 | ### chore 749 | 750 | * Remove extra title [skip ci] ([48ef2db](https://github.com/peaceiris/actions-hugo/commit/48ef2dbba3c136400ffd657b8209d1b7b2b6261b)) 751 | * Update description ([8323a17](https://github.com/peaceiris/actions-hugo/commit/8323a17f96cdcbe7717e2d9ea24804c3f1b0a29f)) 752 | 753 | ### ci 754 | 755 | * Add action test workflow ([37cc539](https://github.com/peaceiris/actions-hugo/commit/37cc539052b4dffff3b468c8a25b5e414f3a7c79)) 756 | * Comment out push event [skip ci] ([d226d51](https://github.com/peaceiris/actions-hugo/commit/d226d51229e27be0121bc922b1148ef69332ed6f)) 757 | 758 | ### docs 759 | 760 | * Add Coverage Status badge [skip ci] ([3130d10](https://github.com/peaceiris/actions-hugo/commit/3130d100df2b0d10f954f9030098c2acaf553af2)) 761 | * Update execution time ([477d977](https://github.com/peaceiris/actions-hugo/commit/477d977a96079da2efe5596b1a1935ec6a6efddc)) 762 | 763 | ### refactor 764 | 765 | * main and installer (#133) ([283bc47](https://github.com/peaceiris/actions-hugo/commit/283bc47636b79858da429c7c2f16a97f4ec00638)), closes [#133](https://github.com/peaceiris/actions-hugo/issues/133) 766 | * Use node-fetch instead of xmlhttprequest (#130) ([4642226](https://github.com/peaceiris/actions-hugo/commit/4642226db024cf8c43266df88a8a324233b19d30)), closes [#130](https://github.com/peaceiris/actions-hugo/issues/130) 767 | 768 | ### test 769 | 770 | * Add integration testing (#131) ([386980e](https://github.com/peaceiris/actions-hugo/commit/386980e22b20d82471f64474e932614b5d22dfa9)), closes [#131](https://github.com/peaceiris/actions-hugo/issues/131) 771 | * Add test for extended option (#134) ([6281061](https://github.com/peaceiris/actions-hugo/commit/6281061c0d9ca0dbde316f3059e931df883b7273)), closes [#134](https://github.com/peaceiris/actions-hugo/issues/134) 772 | * Add unit testing (get-latest-version) (#132) ([442aa4d](https://github.com/peaceiris/actions-hugo/commit/442aa4dbd4b82ed161cf04f0b205abef771ca9a5)), closes [#132](https://github.com/peaceiris/actions-hugo/issues/132) 773 | * Enable Coveralls (#129) ([66bce05](https://github.com/peaceiris/actions-hugo/commit/66bce0558afb6eaa8d8e7f1762426f9e7f53d60c)), closes [#129](https://github.com/peaceiris/actions-hugo/issues/129) 774 | 775 | 776 | 777 | # [2.4.0](https://github.com/peaceiris/actions-hugo/compare/v2.3.2...v2.4.0) (2020-01-17) 778 | 779 | 780 | ### chore 781 | 782 | * Add .DS_Store [skip ci] ([5ce129c](https://github.com/peaceiris/actions-hugo/commit/5ce129c278027bbd0b3d4fb967ea86543f719c7a)) 783 | * Add .gitattributes ([754a1d2](https://github.com/peaceiris/actions-hugo/commit/754a1d28dd8649e5a1151164c990298f36a093d4)) 784 | * Add standard-version [skip ci] ([dc95764](https://github.com/peaceiris/actions-hugo/commit/dc9576430f57dfabaa663af12d5dcd1210c1b155)) 785 | * Add task to autorun npm ci [skip ci] (#128) ([4331a62](https://github.com/peaceiris/actions-hugo/commit/4331a62207ee1604966b28fa32ba5d1ae1b30c6a)), closes [#128](https://github.com/peaceiris/actions-hugo/issues/128) 786 | * Disable branch execution (#125) ([7dc0670](https://github.com/peaceiris/actions-hugo/commit/7dc067063bb67b1e59949161e3be905ed40e3c31)), closes [#125](https://github.com/peaceiris/actions-hugo/issues/125) 787 | * fix tag push ([f21cef4](https://github.com/peaceiris/actions-hugo/commit/f21cef4446db8a2c47e78208d14acc25c3f5cf51)) 788 | * Remove .gitattributes [skip ci] ([3b68672](https://github.com/peaceiris/actions-hugo/commit/3b6867269979eef7d5bdd6de65470678a7e33604)) 789 | * Update LICENSE year ([57168bc](https://github.com/peaceiris/actions-hugo/commit/57168bc2bc3981bfabde15282e9c81dd9f5300ac)) 790 | 791 | ### ci 792 | 793 | * Add [skip ci] ([fbf2ba3](https://github.com/peaceiris/actions-hugo/commit/fbf2ba3b8ba09038d81bcd17fe9dfe0e4d7190ff)) 794 | * Add release workflow [skip ci] ([9d8553d](https://github.com/peaceiris/actions-hugo/commit/9d8553d36d52e040d2bcdd9092544fe6df5bcb91)) 795 | * Enhance tag creation ([7d9bfa0](https://github.com/peaceiris/actions-hugo/commit/7d9bfa0c1d5a9fe98246cf06033890d624a717f0)) 796 | 797 | ### deps 798 | 799 | * update (#118) ([bad8e7f](https://github.com/peaceiris/actions-hugo/commit/bad8e7f80f8fb90e4fc8297535d1c5c8102240d4)), closes [#118](https://github.com/peaceiris/actions-hugo/issues/118) 800 | * update (#126) ([6a7231e](https://github.com/peaceiris/actions-hugo/commit/6a7231ef834e01c9eb84b15f1432d42804f7c69a)), closes [#126](https://github.com/peaceiris/actions-hugo/issues/126) 801 | * upgrade node v12.14.1 (#119) ([cca78d8](https://github.com/peaceiris/actions-hugo/commit/cca78d865e24a18ed38b19dfc4bf0c7130c4c232)), closes [#119](https://github.com/peaceiris/actions-hugo/issues/119) 802 | 803 | ### docs 804 | 805 | * Add back to TOC link ([490ab9b](https://github.com/peaceiris/actions-hugo/commit/490ab9b0a4d95458b58203661788d6499f27d573)) 806 | * add link to peaceiris/hugo-extended-docker ([1fa5fb2](https://github.com/peaceiris/actions-hugo/commit/1fa5fb2f2eda35bda254f126aa066972de95cfbd)) 807 | * Add new sections ([3d1e811](https://github.com/peaceiris/actions-hugo/commit/3d1e8112641c5fafdd12e5e4cf4f359ac289ce71)) 808 | * Bump Hugo version v0.62.2 ([6a39a0f](https://github.com/peaceiris/actions-hugo/commit/6a39a0f0e57bc115c411920fe91ae0144ff26b7e)) 809 | * Reindent [skip ci] ([76e22f1](https://github.com/peaceiris/actions-hugo/commit/76e22f1114f4fdfe2db25ff96bf65b4c513a942c)) 810 | * update hugo-version to v0.61.0 ([d006b81](https://github.com/peaceiris/actions-hugo/commit/d006b81d1845f59bb755a221aff0b61bbff15375)) 811 | 812 | ### feat 813 | 814 | * update deps (#104) ([5e6d8b5](https://github.com/peaceiris/actions-hugo/commit/5e6d8b50e242b4f27b9794f002a74032f4abb8f1)), closes [#104](https://github.com/peaceiris/actions-hugo/issues/104) 815 | * update deps (#110) ([ca3c62d](https://github.com/peaceiris/actions-hugo/commit/ca3c62d21c77504550e4eba47456f9001d2c64ab)), closes [#110](https://github.com/peaceiris/actions-hugo/issues/110) 816 | * update node 12.14.0 (#105) ([25520f7](https://github.com/peaceiris/actions-hugo/commit/25520f73cde6077d55cce09381b4121d83264fff)), closes [#105](https://github.com/peaceiris/actions-hugo/issues/105) 817 | 818 | ### test 819 | 820 | * Add Docker container for testing [skip ci] ([7496c44](https://github.com/peaceiris/actions-hugo/commit/7496c44053ad339cde271140b13a6c3e5385f596)) 821 | --------------------------------------------------------------------------------