Repository: peaceiris/actions-mdbook Branch: main Commit: c55832435624 Files: 46 Total size: 155.7 KB Directory structure: gitextract_zktpkdvf/ ├── .dockerignore ├── .editorconfig ├── .envrc ├── .eslintrc.json ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── 1_user_support.yml │ │ ├── 2_bug_report.yml │ │ ├── 3_proposal.yml │ │ └── config.yml │ ├── dependabot.yml │ └── workflows/ │ ├── codeql-analysis.yml │ ├── dependency-review.yml │ ├── purge-readme-image-cache.yml │ ├── release.yml │ ├── test-action.yml │ ├── test.yml │ └── update-major-tag.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ ├── post-merge │ └── pre-commit ├── .nvmrc ├── .prettierrc.json ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── __tests__/ │ ├── Dockerfile │ ├── data/ │ │ ├── brew.json │ │ └── github.json │ ├── get-latest-version.test.ts │ ├── get-os.test.ts │ ├── get-url.test.ts │ └── main.test.ts ├── action.yml ├── jest.config.js ├── package.json ├── release.sh ├── src/ │ ├── get-latest-version.ts │ ├── get-os.ts │ ├── get-url.ts │ ├── index.ts │ ├── installer.ts │ └── main.ts └── tsconfig.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .dockerignore ================================================ .* !.eslintrc.json !.prettierrc.json coverage node_modules ================================================ FILE: .editorconfig ================================================ root = true [*] charset = utf-8 end_of_line = lf indent_size = 2 indent_style = space insert_final_newline = true trim_trailing_whitespace = true ================================================ FILE: .envrc ================================================ nvmrc=~/.nvm/nvm.sh source $nvmrc nvm use ================================================ FILE: .eslintrc.json ================================================ { "env": { "commonjs": true, "es6": true, "node": true }, "extends": "eslint:recommended", "globals": { "Atomics": "readonly", "SharedArrayBuffer": "readonly" }, "parser": "@typescript-eslint/parser", "parserOptions": { "sourceType": "module", "ecmaVersion": 2019 }, "rules": { } } ================================================ FILE: .github/CODEOWNERS ================================================ # https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners * @peaceiris ================================================ FILE: .github/ISSUE_TEMPLATE/1_user_support.yml ================================================ name: User Support description: Questions for this action title: "support: " labels: support assignees: peaceiris body: - type: markdown attributes: value: 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. - type: checkboxes attributes: label: Checklist description: Checklist before creating an issue. options: - label: "I am using the latest version of this action." required: true - label: "I have read the latest README and followed the instructions." required: true - label: "I have read the latest GitHub Actions official documentation and learned the basic spec and concepts." required: true - type: textarea attributes: label: Describe your question description: A clear and concise description of what the question is. validations: required: true - type: textarea attributes: label: Relevant links description: Links to your public repository, YAML config file, and YAML workflow file. 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. render: markdown value: | Public repository: YAML config: YAML workflow: validations: required: true - type: textarea attributes: label: Relevant log output description: Copy and paste any relevant log output here. validations: required: true - type: textarea attributes: label: Additional context. description: Write any other context about the question here. validations: required: true ================================================ FILE: .github/ISSUE_TEMPLATE/2_bug_report.yml ================================================ name: Bug Report description: Try the User Support Issue Template first. title: 'bug: ' labels: bug assignees: peaceiris body: - type: markdown attributes: value: 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. - type: checkboxes attributes: label: Checklist description: Checklist before creating an issue. options: - label: "I am using the latest version of this action." required: true - label: "I have read the latest README and followed the instructions." required: true - label: "I have read the latest GitHub Actions official documentation and learned the basic spec and concepts." required: true - type: textarea attributes: label: "Describe the bug" description: "A clear and concise description of what the bug is." validations: required: true - type: textarea attributes: label: Relevant links description: Links to your public repository, YAML config file, and YAML workflow file. 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. render: markdown value: | Public repository: YAML config: YAML workflow: validations: required: true - type: textarea attributes: label: Relevant log output description: Copy and paste any relevant log output here. validations: required: true - type: textarea attributes: label: Additional context. description: Write any other context about the question here. validations: required: true ================================================ FILE: .github/ISSUE_TEMPLATE/3_proposal.yml ================================================ name: Proposal description: Suggest an idea for this project title: 'proposal: ' labels: proposal assignees: peaceiris body: - type: markdown attributes: value: 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. - type: checkboxes attributes: label: Checklist description: Checklist before creating an issue. options: - label: "I am using the latest version of this action." required: true - label: "I have read the latest README and followed the instructions." required: true - label: "I have read the latest GitHub Actions official documentation and learned the basic spec and concepts." required: true - type: textarea attributes: label: "Describe your proposal" description: "A clear and concise description of what the proposal is." validations: required: true - type: textarea attributes: label: "Describe the solution you'd like" description: "A clear and concise description of what you want to happen." validations: required: true - type: textarea attributes: label: "Describe alternatives you've considered" description: "A clear and concise description of any alternative solutions or features you've considered." validations: required: true - type: textarea attributes: label: "Additional context" description: "Add any other context or screenshots about the feature request here." validations: required: true ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ blank_issues_enabled: false contact_links: - name: GitHub Actions - GitHub Support Community Forum url: https://github.community/c/code-to-cloud/github-actions/41 about: Please ask questions about GitHub Actions here. - name: GitHub Actions Documentation url: https://docs.github.com/en/actions about: GitHub Actions official documentation here. ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: npm directory: "/" schedule: interval: daily time: '11:00' timezone: Japan labels: - "dependencies" allow: - dependency-type: "production" commit-message: prefix: deps - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" time: '11:00' timezone: Japan labels: - "CI/CD" commit-message: prefix: ci ================================================ FILE: .github/workflows/codeql-analysis.yml ================================================ name: "Code Scanning" on: push: branches: - main pull_request: jobs: CodeQL-Build: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: languages: javascript - name: Autobuild uses: github/codeql-action/autobuild@v2 - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 ================================================ FILE: .github/workflows/dependency-review.yml ================================================ # Source repository: https://github.com/actions/dependency-review-action # Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement name: 'Dependency Review' on: pull_request: permissions: contents: read jobs: dependency-review: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v4 - uses: actions/dependency-review-action@v4.5.0 ================================================ FILE: .github/workflows/purge-readme-image-cache.yml ================================================ name: Purge image cache on: schedule: - cron: '34 18 * * */7' jobs: purge: runs-on: ubuntu-22.04 steps: - run: > curl -sL https://github.com/${GITHUB_REPOSITORY} | grep -oE ' ./release_notes.md RELEASE_NAME="$(jq -r '.name' ./package.json)" sed -i "1i${RELEASE_NAME} ${TAG_NAME}\n" ./release_notes.md ./bin/hub release create \ --draft \ --prerelease \ --file ./release_notes.md \ "${TAG_NAME}" ================================================ FILE: .github/workflows/test-action.yml ================================================ name: Daily Test on: schedule: - cron: '14 14 * * *' workflow_dispatch: jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: os: - 'ubuntu-latest' - 'ubuntu-20.04' - 'macos-latest' - 'windows-latest' mdbook-version: - 'latest' - '0.4.0' steps: - uses: actions/checkout@v4 - name: Setup mdBook uses: peaceiris/actions-mdbook@v2.0.0 with: mdbook-version: ${{ matrix.mdbook-version }} - name: Run mdbook --version run: echo "::set-output name=mdbook_version::$(mdbook --version)" id: mdbook_version - name: '${{ steps.mdbook_version.outputs.mdbook_version }}' run: echo '${{ steps.mdbook_version.outputs.mdbook_version }}' ================================================ FILE: .github/workflows/test.yml ================================================ name: 'Test' on: push: branches: - main paths-ignore: - '**.md' pull_request: paths-ignore: - '**.md' jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: os: - 'ubuntu-latest' - 'ubuntu-20.04' - 'macos-latest' - 'windows-latest' steps: - uses: actions/checkout@v4 - name: Read .nvmrc run: echo "::set-output name=NVMRC::$(cat .nvmrc)" id: nvm - name: Setup Node uses: actions/setup-node@v4.2.0 with: node-version: '${{ steps.nvm.outputs.NVMRC }}' - run: npm ci - name: Run prettier if: ${{ startsWith(matrix.os, 'ubuntu-latest') }} run: npm run format:check - name: Run eslint if: ${{ startsWith(matrix.os, 'ubuntu-latest') }} run: npm run lint - name: Run ncc if: ${{ startsWith(matrix.os, 'ubuntu-latest') }} run: npm run build - run: npm test - name: Upload test coverage as artifact uses: actions/upload-artifact@v3 with: name: coverage-${{ matrix.os }} path: coverage - uses: codecov/codecov-action@v5 ================================================ FILE: .github/workflows/update-major-tag.yml ================================================ name: Update major tag on: release: types: [released] jobs: update: runs-on: ubuntu-20.04 timeout-minutes: 1 steps: - uses: actions/checkout@v4 - name: Update major tag run: | git config user.name "${GITHUB_ACTOR}" git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" git remote set-url origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" export TAG_NAME="${GITHUB_REF##refs/tags/}" export TAG_MAJOR="${TAG_NAME%%.*}" git tag --force -a "${TAG_MAJOR}" -m "Release ${TAG_NAME}" git push --force origin "${TAG_MAJOR}" ================================================ FILE: .gitignore ================================================ .DS_Store coverage .npm .eslintcache node_modules ================================================ FILE: .husky/.gitignore ================================================ _ ================================================ FILE: .husky/post-merge ================================================ npm ci git remote prune origin ================================================ FILE: .husky/pre-commit ================================================ npx lint-staged ================================================ FILE: .nvmrc ================================================ 20.12.1 ================================================ FILE: .prettierrc.json ================================================ { "printWidth": 80, "tabWidth": 2, "useTabs": false, "semi": true, "singleQuote": true, "trailingComma": "none", "bracketSpacing": false, "arrowParens": "avoid", "parser": "typescript" } ================================================ FILE: .vscode/settings.json ================================================ { "git.ignoreLimitWarning": true } ================================================ FILE: CHANGELOG.md ================================================ # Changelog 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. # [2.0.0](https://github.com/peaceiris/actions-mdbook/compare/v1.2.0...v2.0.0) (2024-04-08) ### build * bump node to 20.12.1 (#504) ([cb4d902](https://github.com/peaceiris/actions-mdbook/commit/cb4d902e118c7404c24c2a59b5a619e363e0eed9)), closes [#504](https://github.com/peaceiris/actions-mdbook/issues/504) ### chore * revert build ([c95f05c](https://github.com/peaceiris/actions-mdbook/commit/c95f05c7f61f6cc7b1abfc2aa4e2fb293c2e0bb7)) ### ci * bump actions/checkout from 3 to 4 (#487) ([c0c1ffe](https://github.com/peaceiris/actions-mdbook/commit/c0c1ffeeae553a80d23fe6c4d903f04c20d1efd4)), closes [#487](https://github.com/peaceiris/actions-mdbook/issues/487) * bump actions/dependency-review-action from 2.5.0 to 2.5.1 (#470) ([e8a2552](https://github.com/peaceiris/actions-mdbook/commit/e8a2552a1a7d3b89458037a44425d39e11b3bbed)), closes [#470](https://github.com/peaceiris/actions-mdbook/issues/470) [#290](https://github.com/peaceiris/actions-mdbook/issues/290) [#300](https://github.com/peaceiris/actions-mdbook/issues/300) [#299](https://github.com/peaceiris/actions-mdbook/issues/299) * bump actions/dependency-review-action from 2.5.1 to 3.0.0 (#472) ([9a6ded1](https://github.com/peaceiris/actions-mdbook/commit/9a6ded1ce6570d9297f3dd08d97553ce8d75e819)), closes [#472](https://github.com/peaceiris/actions-mdbook/issues/472) [#327](https://github.com/peaceiris/actions-mdbook/issues/327) [#324](https://github.com/peaceiris/actions-mdbook/issues/324) [#325](https://github.com/peaceiris/actions-mdbook/issues/325) [#326](https://github.com/peaceiris/actions-mdbook/issues/326) * bump actions/dependency-review-action from 3.0.0 to 3.0.1 (#473) ([939fe76](https://github.com/peaceiris/actions-mdbook/commit/939fe7600f5ad73a71889ae9ca327d9c349c1c18)), closes [#473](https://github.com/peaceiris/actions-mdbook/issues/473) * bump actions/dependency-review-action from 3.0.1 to 3.0.2 (#474) ([404c95a](https://github.com/peaceiris/actions-mdbook/commit/404c95aeedbdb24218df5d3a02dd1d639ad7ff0c)), closes [#474](https://github.com/peaceiris/actions-mdbook/issues/474) * bump actions/dependency-review-action from 3.0.2 to 3.0.3 (#476) ([665e827](https://github.com/peaceiris/actions-mdbook/commit/665e827a09abcfcdfd28e990de96c279f3ba82ee)), closes [#476](https://github.com/peaceiris/actions-mdbook/issues/476) * bump actions/dependency-review-action from 3.0.3 to 3.0.4 (#479)Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> ([9d85c8a](https://github.com/peaceiris/actions-mdbook/commit/9d85c8a72133d66cedafb696236491618b032939)), closes [#479](https://github.com/peaceiris/actions-mdbook/issues/479) * bump actions/dependency-review-action from 3.0.4 to 3.0.6 (#480) ([a1c0a09](https://github.com/peaceiris/actions-mdbook/commit/a1c0a098b8e4a05cb9b25c79af285b6d171dc347)), closes [#480](https://github.com/peaceiris/actions-mdbook/issues/480) * bump actions/dependency-review-action from 3.0.6 to 3.0.7 (#483) ([2987c69](https://github.com/peaceiris/actions-mdbook/commit/2987c698ee6c43d5353d672c5768d315a5701d02)), closes [#483](https://github.com/peaceiris/actions-mdbook/issues/483) * bump actions/dependency-review-action from 3.0.7 to 3.0.8 (#485) ([162a198](https://github.com/peaceiris/actions-mdbook/commit/162a198ca6534c7c8ba31c16e3e14282ca751364)), closes [#485](https://github.com/peaceiris/actions-mdbook/issues/485) * bump actions/dependency-review-action from 3.0.8 to 3.1.0 (#488) ([60cc2ff](https://github.com/peaceiris/actions-mdbook/commit/60cc2ffbc1a8ee8273b736332bd9729fad7aeecd)), closes [#488](https://github.com/peaceiris/actions-mdbook/issues/488) * bump actions/setup-node from 3.5.1 to 3.6.0 (#475) ([10da3f5](https://github.com/peaceiris/actions-mdbook/commit/10da3f536471b3cbb0c31eeddbe3b692648b6db2)), closes [#475](https://github.com/peaceiris/actions-mdbook/issues/475) * bump actions/setup-node from 3.6.0 to 3.7.0 (#481) ([334df4e](https://github.com/peaceiris/actions-mdbook/commit/334df4e551c395d0298645134ebb34a0a5036b3b)), closes [#481](https://github.com/peaceiris/actions-mdbook/issues/481) * bump actions/setup-node from 3.7.0 to 3.8.0 (#484) ([fe51920](https://github.com/peaceiris/actions-mdbook/commit/fe519205c007d9337f4c2d3d912636b398d6f32c)), closes [#484](https://github.com/peaceiris/actions-mdbook/issues/484) * bump actions/setup-node from 3.8.0 to 3.8.1 (#486) ([c6c9e0f](https://github.com/peaceiris/actions-mdbook/commit/c6c9e0f19326d4f3e7bbd16d49393d427fc06353)), closes [#486](https://github.com/peaceiris/actions-mdbook/issues/486) * bump codecov/codecov-action from 3 to 4 (#490) ([7b0c98f](https://github.com/peaceiris/actions-mdbook/commit/7b0c98f8f3651db1bc6fd2a3d32031214fe04bd6)), closes [#490](https://github.com/peaceiris/actions-mdbook/issues/490) * bump github/codeql-action from 1 to 2 (#440) ([7ce6923](https://github.com/peaceiris/actions-mdbook/commit/7ce6923a7b5ce037d560297e4c5a8a8c7216462d)), closes [#440](https://github.com/peaceiris/actions-mdbook/issues/440) * bump peaceiris/actions-mdbook from 1.1.14 to 1.2.0 (#469) ([59732c8](https://github.com/peaceiris/actions-mdbook/commit/59732c82f285d3a185e3bce974c59fac83c6be3e)), closes [#469](https://github.com/peaceiris/actions-mdbook/issues/469) [#397](https://github.com/peaceiris/actions-mdbook/issues/397) [#397](https://github.com/peaceiris/actions-mdbook/issues/397) [#385](https://github.com/peaceiris/actions-mdbook/issues/385) [#385](https://github.com/peaceiris/actions-mdbook/issues/385) [#407](https://github.com/peaceiris/actions-mdbook/issues/407) [#407](https://github.com/peaceiris/actions-mdbook/issues/407) [#409](https://github.com/peaceiris/actions-mdbook/issues/409) [#409](https://github.com/peaceiris/actions-mdbook/issues/409) [#424](https://github.com/peaceiris/actions-mdbook/issues/424) [#424](https://github.com/peaceiris/actions-mdbook/issues/424) [#463](https://github.com/peaceiris/actions-mdbook/issues/463) [#463](https://github.com/peaceiris/actions-mdbook/issues/463) [#393](https://github.com/peaceiris/actions-mdbook/issues/393) [#393](https://github.com/peaceiris/actions-mdbook/issues/393) [#395](https://github.com/peaceiris/actions-mdbook/issues/395) [#395](https://github.com/peaceiris/actions-mdbook/issues/395) [#399](https://github.com/peaceiris/actions-mdbook/issues/399) [#399](https://github.com/peaceiris/actions-mdbook/issues/399) [#400](https://github.com/peaceiris/actions-mdbook/issues/400) [#400](https://github.com/peaceiris/actions-mdbook/issues/400) [#405](https://github.com/peaceiris/actions-mdbook/issues/405) [#405](https://github.com/peaceiris/actions-mdbook/issues/405) [#411](https://github.com/peaceiris/actions-mdbook/issues/411) [#411](https://github.com/peaceiris/actions-mdbook/issues/411) [#412](https://github.com/peaceiris/actions-mdbook/issues/412) [#412](https://github.com/peaceiris/actions-mdbook/issues/412) [#416](https://github.com/peaceiris/actions-mdbook/issues/416) [#416](https://github.com/peaceiris/actions-mdbook/issues/416) [#435](https://github.com/peaceiris/actions-mdbook/issues/435) [#435](https://github.com/peaceiris/actions-mdbook/issues/435) [#438](https://github.com/peaceiris/actions-mdbook/issues/438) [#438](https://github.com/peaceiris/actions-mdbook/issues/438) [#456](https://github.com/peaceiris/actions-mdbook/issues/456) [#456](https://github.com/peaceiris/actions-mdbook/issues/456) [#460](https://github.com/peaceiris/actions-mdbook/issues/460) [#460](https://github.com/peaceiris/actions-mdbook/issues/460) [#462](https://github.com/peaceiris/actions-mdbook/issues/462) [#462](https://github.com/peaceiris/actions-mdbook/issues/462) [#371](https://github.com/peaceiris/actions-mdbook/issues/371) [#371](https://github.com/peaceiris/actions-mdbook/issues/371) [#437](https://github.com/peaceiris/actions-mdbook/issues/437) [#437](https://github.com/peaceiris/actions-mdbook/issues/437) [#392](https://github.com/peaceiris/actions-mdbook/issues/392) [#392](https://github.com/peaceiris/actions-mdbook/issues/392) [#394](https://github.com/peaceiris/actions-mdbook/issues/394) [#394](https://github.com/peaceiris/actions-mdbook/issues/394) [#396](https://github.com/peaceiris/actions-mdbook/issues/396) [#396](https://github.com/peaceiris/actions-mdbook/issues/396) [#402](https://github.com/peaceiris/actions-mdbook/issues/402) [#402](https://github.com/peaceiris/actions-mdbook/issues/402) [#404](https://github.com/peaceiris/actions-mdbook/issues/404) [#404](https://github.com/peaceiris/actions-mdbook/issues/404) [#436](https://github.com/peaceiris/actions-mdbook/issues/436) [#436](https://github.com/peaceiris/actions-mdbook/issues/436) [#373](https://github.com/peaceiris/actions-mdbook/issues/373) [#373](https://github.com/peaceiris/actions-mdbook/issues/373) [#374](https://github.com/peaceiris/actions-mdbook/issues/374) [#374](https://github.com/peaceiris/actions-mdbook/issues/374) [#377](https://github.com/peaceiris/actions-mdbook/issues/377) [#377](https://github.com/peaceiris/actions-mdbook/issues/377) [#380](https://github.com/peaceiris/actions-mdbook/issues/380) [#380](https://github.com/peaceiris/actions-mdbook/issues/380) [#381](https://github.com/peaceiris/actions-mdbook/issues/381) [#381](https://github.com/peaceiris/actions-mdbook/issues/381) [#383](https://github.com/peaceiris/actions-mdbook/issues/383) [#383](https://github.com/peaceiris/actions-mdbook/issues/383) [#384](https://github.com/peaceiris/actions-mdbook/issues/384) [#384](https://github.com/peaceiris/actions-mdbook/issues/384) [#382](https://github.com/peaceiris/actions-mdbook/issues/382) [#382](https://github.com/peaceiris/actions-mdbook/issues/382) [#466](https://github.com/peaceiris/actions-mdbook/issues/466) [#463](https://github.com/peaceiris/actions-mdbook/issues/463) [#462](https://github.com/peaceiris/actions-mdbook/issues/462) [#460](https://github.com/peaceiris/actions-mdbook/issues/460) [#456](https://github.com/peaceiris/actions-mdbook/issues/456) [#438](https://github.com/peaceiris/actions-mdbook/issues/438) [#437](https://github.com/peaceiris/actions-mdbook/issues/437) ### feat * bump to node20 runtime (#500) ([46c97c2](https://github.com/peaceiris/actions-mdbook/commit/46c97c2f70ec25e11d870c72c380aa25107c5189)), closes [#500](https://github.com/peaceiris/actions-mdbook/issues/500) # [1.2.0](https://github.com/peaceiris/actions-mdbook/compare/v1.1.14...v1.2.0) (2022-10-23) ### chore * Add postinstall for husky install ([0622767](https://github.com/peaceiris/actions-mdbook/commit/0622767fb2eae5ab3498152162fd85a7714c64a4)) * Convert templates to YAML issue forms ([12969d1](https://github.com/peaceiris/actions-mdbook/commit/12969d1763255c9381d8037359d9ccbc7f7a726c)) * Fix prettier (#397) ([44ecb22](https://github.com/peaceiris/actions-mdbook/commit/44ecb22db74f4d99ed3e5559a242dac1e8de130f)), closes [#397](https://github.com/peaceiris/actions-mdbook/issues/397) * fix year ([95fa0b4](https://github.com/peaceiris/actions-mdbook/commit/95fa0b43bb4df9178b134e9e8276936599baa799)) ### ci * add actions/dependency-review-action v1 ([a827a09](https://github.com/peaceiris/actions-mdbook/commit/a827a098e9b98ddd84fbd6570d40df03dfe80cf3)) * bump actions/checkout from 2 to 2.3.4 (#385) ([79a5dff](https://github.com/peaceiris/actions-mdbook/commit/79a5dff473ecdfc20f2fdf967cbe9c36436163a8)), closes [#385](https://github.com/peaceiris/actions-mdbook/issues/385) * bump actions/checkout from 2.3.4 to 2.3.5 (#407) ([ebfa418](https://github.com/peaceiris/actions-mdbook/commit/ebfa4181d43aa519527a75733f8d42c9cd9883d9)), closes [#407](https://github.com/peaceiris/actions-mdbook/issues/407) * bump actions/checkout from 2.3.5 to 2.4.0 (#409) ([f7b124c](https://github.com/peaceiris/actions-mdbook/commit/f7b124c39e16a8639b7ab2eb891a909edde866b1)), closes [#409](https://github.com/peaceiris/actions-mdbook/issues/409) * bump actions/checkout from 2.4.0 to 3 (#424) ([a720f60](https://github.com/peaceiris/actions-mdbook/commit/a720f60376a6f02d3e4167df12216c513174d09e)), closes [#424](https://github.com/peaceiris/actions-mdbook/issues/424) * bump actions/dependency-review-action from 1 to 2.5.0 (#463) ([6afdaef](https://github.com/peaceiris/actions-mdbook/commit/6afdaef5d8553b66ef217be36d9066c928c6b7c4)), closes [#463](https://github.com/peaceiris/actions-mdbook/issues/463) * bump actions/setup-node from 2.1.5 to 2.2.0 (#393) ([1f6c62b](https://github.com/peaceiris/actions-mdbook/commit/1f6c62baff6cfa42f08e16fc8adb6813eb449e0c)), closes [#393](https://github.com/peaceiris/actions-mdbook/issues/393) * bump actions/setup-node from 2.2.0 to 2.3.0 (#395) ([5c8713c](https://github.com/peaceiris/actions-mdbook/commit/5c8713cab902170d0541cb6430db9c731f99d5b7)), closes [#395](https://github.com/peaceiris/actions-mdbook/issues/395) * bump actions/setup-node from 2.3.0 to 2.3.2 (#399) ([8860a5d](https://github.com/peaceiris/actions-mdbook/commit/8860a5dd248d8f291d2a5ce4f82f8e400c1b1532)), closes [#399](https://github.com/peaceiris/actions-mdbook/issues/399) * bump actions/setup-node from 2.3.2 to 2.4.0 (#400) ([3ba9c73](https://github.com/peaceiris/actions-mdbook/commit/3ba9c73d8090d2a1b610fd7013cf3fb8ab5a5fe7)), closes [#400](https://github.com/peaceiris/actions-mdbook/issues/400) * bump actions/setup-node from 2.4.0 to 2.4.1 (#405) ([5a06fff](https://github.com/peaceiris/actions-mdbook/commit/5a06fffb78d9a558c4c1e705741aae0d3e11c8ff)), closes [#405](https://github.com/peaceiris/actions-mdbook/issues/405) * bump actions/setup-node from 2.4.1 to 2.5.0 (#411) ([5fba966](https://github.com/peaceiris/actions-mdbook/commit/5fba96629d625f63ca78e7a1a3b7648ba258018d)), closes [#411](https://github.com/peaceiris/actions-mdbook/issues/411) * bump actions/setup-node from 2.5.0 to 2.5.1 (#412) ([8305f4f](https://github.com/peaceiris/actions-mdbook/commit/8305f4f5d9aab0af451fffc5dc3beb37a6f36e1f)), closes [#412](https://github.com/peaceiris/actions-mdbook/issues/412) * bump actions/setup-node from 2.5.1 to 3.0.0 (#416) ([e5dcf8c](https://github.com/peaceiris/actions-mdbook/commit/e5dcf8c9994ee01f8d6d0345675ea70f43602844)), closes [#416](https://github.com/peaceiris/actions-mdbook/issues/416) * bump actions/setup-node from 3.0.0 to 3.1.0 (#435) ([2adbd34](https://github.com/peaceiris/actions-mdbook/commit/2adbd349a699f788f5d96b2dc10ba4f88f09d25b)), closes [#435](https://github.com/peaceiris/actions-mdbook/issues/435) * bump actions/setup-node from 3.1.0 to 3.1.1 (#438) ([2a84fe2](https://github.com/peaceiris/actions-mdbook/commit/2a84fe2d528a128d2ca34a43f6b887698bdc4113)), closes [#438](https://github.com/peaceiris/actions-mdbook/issues/438) * bump actions/setup-node from 3.1.1 to 3.4.1 (#456) ([5323133](https://github.com/peaceiris/actions-mdbook/commit/532313336a33ca97c599a3669c69f24e20f0d7a7)), closes [#456](https://github.com/peaceiris/actions-mdbook/issues/456) * bump actions/setup-node from 3.4.1 to 3.5.0 (#460) ([30b03b3](https://github.com/peaceiris/actions-mdbook/commit/30b03b3da9dc12060e914d3f1b509014bdf4958d)), closes [#460](https://github.com/peaceiris/actions-mdbook/issues/460) * bump actions/setup-node from 3.5.0 to 3.5.1 (#462) ([664c5eb](https://github.com/peaceiris/actions-mdbook/commit/664c5ebec6188f4016eff3c9c4145c72148361f3)), closes [#462](https://github.com/peaceiris/actions-mdbook/issues/462) * bump actions/setup-node from v2.1.4 to v2.1.5 (#371) ([21878f5](https://github.com/peaceiris/actions-mdbook/commit/21878f56ff6dab357440457515d1f58ba0feadce)), closes [#371](https://github.com/peaceiris/actions-mdbook/issues/371) * bump actions/upload-artifact from 2 to 3 (#437) ([63c13da](https://github.com/peaceiris/actions-mdbook/commit/63c13dafd18f8a3042b5d60b48553b37c6afeb2d)), closes [#437](https://github.com/peaceiris/actions-mdbook/issues/437) * bump codecov/codecov-action from 1.5.0 to 1.5.2 (#392) ([3c6482d](https://github.com/peaceiris/actions-mdbook/commit/3c6482d9c4fd02acdea55b5b1a5b8f472a47054e)), closes [#392](https://github.com/peaceiris/actions-mdbook/issues/392) * bump codecov/codecov-action from 1.5.2 to 2.0.1 (#394) ([193c1ea](https://github.com/peaceiris/actions-mdbook/commit/193c1eab88eaa02eca9e34ae7379043d2cceaee2)), closes [#394](https://github.com/peaceiris/actions-mdbook/issues/394) * bump codecov/codecov-action from 2.0.1 to 2.0.2 (#396) ([ffe1134](https://github.com/peaceiris/actions-mdbook/commit/ffe11341d798f2a56f14087902c2448e5e79c85b)), closes [#396](https://github.com/peaceiris/actions-mdbook/issues/396) * bump codecov/codecov-action from 2.0.2 to 2.0.3 (#402) ([185143a](https://github.com/peaceiris/actions-mdbook/commit/185143a4f267c11bba4e558bcabd1295d32a20be)), closes [#402](https://github.com/peaceiris/actions-mdbook/issues/402) * bump codecov/codecov-action from 2.0.3 to 2.1.0 (#404) ([63df222](https://github.com/peaceiris/actions-mdbook/commit/63df2221184d8fe09704346b6d5e064d4b0bf33b)), closes [#404](https://github.com/peaceiris/actions-mdbook/issues/404) * bump codecov/codecov-action from 2.1.0 to 3 (#436) ([4bd81e7](https://github.com/peaceiris/actions-mdbook/commit/4bd81e7293d27af0e094afc125620ffdcbb5fb9f)), closes [#436](https://github.com/peaceiris/actions-mdbook/issues/436) * bump codecov/codecov-action from v1.2.1 to v1.2.2 (#373) ([acd9696](https://github.com/peaceiris/actions-mdbook/commit/acd969679f27549f73266adb2af2c303305dd123)), closes [#373](https://github.com/peaceiris/actions-mdbook/issues/373) * bump codecov/codecov-action from v1.2.2 to v1.3.1 (#374) ([b29dbb0](https://github.com/peaceiris/actions-mdbook/commit/b29dbb031d275443bddb237d9632d72f1aefbaac)), closes [#374](https://github.com/peaceiris/actions-mdbook/issues/374) * bump codecov/codecov-action from v1.3.1 to v1.3.2 (#377) ([745ff6c](https://github.com/peaceiris/actions-mdbook/commit/745ff6c13bd2aeb2fef71365114b01df3b1fe0d5)), closes [#377](https://github.com/peaceiris/actions-mdbook/issues/377) * bump codecov/codecov-action from v1.3.2 to v1.4.0 (#380) ([a9fe0f5](https://github.com/peaceiris/actions-mdbook/commit/a9fe0f5c73d3eb39b03b56d18d2f870f7a24a7ed)), closes [#380](https://github.com/peaceiris/actions-mdbook/issues/380) * bump codecov/codecov-action from v1.4.0 to v1.4.1 (#381) ([592313f](https://github.com/peaceiris/actions-mdbook/commit/592313f7a6a2f622e090eb0a94bda62ed5ee22d9)), closes [#381](https://github.com/peaceiris/actions-mdbook/issues/381) * bump codecov/codecov-action from v1.4.1 to v1.5.0 (#383) ([aba16a7](https://github.com/peaceiris/actions-mdbook/commit/aba16a7dcb59808e8661d6cdf075ed2f312a6426)), closes [#383](https://github.com/peaceiris/actions-mdbook/issues/383) * bump peaceiris/actions-mdbook from 1 to 1.1.14 (#384) ([fb535da](https://github.com/peaceiris/actions-mdbook/commit/fb535da8bde625bc9c8594fdb9ae594ce6f51eb1)), closes [#384](https://github.com/peaceiris/actions-mdbook/issues/384) * Change trigger from published to released ([1750a41](https://github.com/peaceiris/actions-mdbook/commit/1750a41b48630993aab50925a504c3eb39813f05)) * Drop ubuntu-16.04, add ubuntu-latest (#382) ([a4d09d2](https://github.com/peaceiris/actions-mdbook/commit/a4d09d2d1173fbce469bc8da91ff09c120e59830)), closes [#382](https://github.com/peaceiris/actions-mdbook/issues/382) * Fix husky post-merge ([7893cd3](https://github.com/peaceiris/actions-mdbook/commit/7893cd361a70fe3a7c3cbe66e9cc025484eac0fc)) * Improve if syntax ([34cd383](https://github.com/peaceiris/actions-mdbook/commit/34cd3836d077924d2b4036b7e428005925ea3734)) * Migrate husky from v4 to v5 ([111b627](https://github.com/peaceiris/actions-mdbook/commit/111b6271d89929f416a99a6a0f859cc527bb2cf1)) * Remove skipci job ([0ef433f](https://github.com/peaceiris/actions-mdbook/commit/0ef433f44e27743239a93dc465d1b3ac6f6d1ead)) * update husky v4 to v5 (#369) ([1787abe](https://github.com/peaceiris/actions-mdbook/commit/1787abe082209098ee8f99be8792322cdc4ea159)), closes [#369](https://github.com/peaceiris/actions-mdbook/issues/369) ### deps * bump @actions/core from 1.2.6 to 1.2.7 (#378) ([f616191](https://github.com/peaceiris/actions-mdbook/commit/f6161915dca21918c1c5b58488b4c0c145b1a1ee)), closes [#378](https://github.com/peaceiris/actions-mdbook/issues/378) * bump @actions/core from 1.2.7 to 1.6.0 (#406) ([927d7bd](https://github.com/peaceiris/actions-mdbook/commit/927d7bdde7971c5c70bc7dc0d26e8bd38f5de957)), closes [#406](https://github.com/peaceiris/actions-mdbook/issues/406) * bump @actions/exec from 1.0.4 to 1.1.1 (#428) ([a469c7e](https://github.com/peaceiris/actions-mdbook/commit/a469c7e18b31487c46b02cbbd490267d8c2a6507)), closes [#428](https://github.com/peaceiris/actions-mdbook/issues/428) * bump @actions/io from 1.0.2 to 1.1.0 (#376) ([5deaa23](https://github.com/peaceiris/actions-mdbook/commit/5deaa232ffaeda6e8cdf5570a024ae07e1297dbb)), closes [#376](https://github.com/peaceiris/actions-mdbook/issues/376) * bump @actions/tool-cache from 1.6.1 to 1.7.2 (#429) ([fc3c5b2](https://github.com/peaceiris/actions-mdbook/commit/fc3c5b22a8003b9c40f3284de8fd68419796c775)), closes [#429](https://github.com/peaceiris/actions-mdbook/issues/429) * bump ansi-regex from 5.0.0 to 5.0.1 (#419) ([ed21bce](https://github.com/peaceiris/actions-mdbook/commit/ed21bce1f5a6b056c37a8f443938aa6e8638cbe0)), closes [#419](https://github.com/peaceiris/actions-mdbook/issues/419) * bump glob-parent from 5.1.1 to 5.1.2 (#433) ([9d6999d](https://github.com/peaceiris/actions-mdbook/commit/9d6999d42088ede22980a8c97096848a2ecfd0b1)), closes [#433](https://github.com/peaceiris/actions-mdbook/issues/433) * bump handlebars from 4.7.6 to 4.7.7 (#415) ([a65ab81](https://github.com/peaceiris/actions-mdbook/commit/a65ab81e9e11901c740a4035ba8584b4406d6797)), closes [#415](https://github.com/peaceiris/actions-mdbook/issues/415) * bump hosted-git-info from 2.8.8 to 2.8.9 (#420) ([731178b](https://github.com/peaceiris/actions-mdbook/commit/731178badad22b4911d521ffcf1df629582746a0)), closes [#420](https://github.com/peaceiris/actions-mdbook/issues/420) * bump lodash from 4.17.20 to 4.17.21 (#422) ([dba8272](https://github.com/peaceiris/actions-mdbook/commit/dba82722b0f9f457f72b946cd44e874523ee9e4f)), closes [#422](https://github.com/peaceiris/actions-mdbook/issues/422) * bump minimist from 1.2.5 to 1.2.6 (#431) ([bab0097](https://github.com/peaceiris/actions-mdbook/commit/bab009711f3716c0d4c41354b2ef62b405d4e78c)), closes [#431](https://github.com/peaceiris/actions-mdbook/issues/431) * bump node from 12.20.1 to 12.21.0 (#372) ([a99444b](https://github.com/peaceiris/actions-mdbook/commit/a99444bef19724c2160d326ea598bfdfe2ff302d)), closes [#372](https://github.com/peaceiris/actions-mdbook/issues/372) * Bump node from 12.21.0 to 12.22.0 (#375) ([7a4f0d1](https://github.com/peaceiris/actions-mdbook/commit/7a4f0d17b1948fb0759bad1d6fa96e2ce19d4a86)), closes [#375](https://github.com/peaceiris/actions-mdbook/issues/375) * Bump node from 12.22.0 to 12.22.1 (#379) ([de547a1](https://github.com/peaceiris/actions-mdbook/commit/de547a14d7930d442bc39f000bc91c580018299e)), closes [#379](https://github.com/peaceiris/actions-mdbook/issues/379) * Bump npm to v7 ([3d761cd](https://github.com/peaceiris/actions-mdbook/commit/3d761cd9ec6315bddd1bb04ec18f9b55ff49436c)) * bump path-parse from 1.0.6 to 1.0.7 (#432) ([021c734](https://github.com/peaceiris/actions-mdbook/commit/021c73405d307757d5e2da44b1e81b78e1ea4185)), closes [#432](https://github.com/peaceiris/actions-mdbook/issues/432) * bump shelljs from 0.8.4 to 0.8.5 (#421) ([5c01ab2](https://github.com/peaceiris/actions-mdbook/commit/5c01ab2b8019b60946e3ab6138e7f5de3e10fd5f)), closes [#421](https://github.com/peaceiris/actions-mdbook/issues/421) * bump tmpl from 1.0.4 to 1.0.5 (#417) ([ea3f801](https://github.com/peaceiris/actions-mdbook/commit/ea3f80166d7aaf98b6389ac5387df65f9fe84f33)), closes [#417](https://github.com/peaceiris/actions-mdbook/issues/417) * bump trim-off-newlines from 1.0.1 to 1.0.3 (#418) ([e91e2e6](https://github.com/peaceiris/actions-mdbook/commit/e91e2e6e302c9cdb42baf137926cd5a102d14b88)), closes [#418](https://github.com/peaceiris/actions-mdbook/issues/418) * bump ws from 7.4.2 to 7.5.7 (#434) ([a6cb3f7](https://github.com/peaceiris/actions-mdbook/commit/a6cb3f772d214519d68b953b3e4f677a6fd7b99b)), closes [#434](https://github.com/peaceiris/actions-mdbook/issues/434) * node 12.22.4 ([f2d0fad](https://github.com/peaceiris/actions-mdbook/commit/f2d0fad9bed763a961f12a7f60dd614eb7e3883c)) * update devDependencies (#370) ([63fc363](https://github.com/peaceiris/actions-mdbook/commit/63fc3639d58df21bb79c4c9378f8fcae8c144eb2)), closes [#370](https://github.com/peaceiris/actions-mdbook/issues/370) ### docs * Add concurrency ([8209fc8](https://github.com/peaceiris/actions-mdbook/commit/8209fc8cbebdcdbcf680754cc4fc035a3c84051d)) * Add pull_request event ([8704441](https://github.com/peaceiris/actions-mdbook/commit/8704441f6a3fec616c135174813681c5ed27c2d6)) * Improve concurrency usage ([463ecd6](https://github.com/peaceiris/actions-mdbook/commit/463ecd69e315a2add1dfe34735c7f6caf0e072e1)) * Improve if syntax ([14b6f3e](https://github.com/peaceiris/actions-mdbook/commit/14b6f3e9fa3188ebbe55e896456fe320c0899b42)) * mdbook 0.4.8 ([10ae17e](https://github.com/peaceiris/actions-mdbook/commit/10ae17e576c08f7c8011c90775a940a3ff301fc1)) * Pin 0.4.10 ([bb987ad](https://github.com/peaceiris/actions-mdbook/commit/bb987adcc05f1f0cc7de89c40f3a45500fe12824)) * Use ubuntu-20.04 ([ff82e69](https://github.com/peaceiris/actions-mdbook/commit/ff82e6920d64e1e3c7353a085e428e785699a912)) ### feat * bump node12 to node16 (#466) ([97ef02e](https://github.com/peaceiris/actions-mdbook/commit/97ef02ecd89c58d715f10b3b152b5fd2fb51ad52)), closes [#466](https://github.com/peaceiris/actions-mdbook/issues/466) ## [1.1.14](https://github.com/peaceiris/actions-mdbook/compare/v1.1.13...v1.1.14) (2021-01-16) ### chore * add link to Actions Documentation ([72105da](https://github.com/peaceiris/actions-mdbook/commit/72105da021761136d7d939954e97ba37337f4c29)) * Change default branch from master to main (#366) ([335b17e](https://github.com/peaceiris/actions-mdbook/commit/335b17e63ad7ae955d00ecdfc44fa45a9eb7f530)), closes [#366](https://github.com/peaceiris/actions-mdbook/issues/366) * update link to github.community ([e14a664](https://github.com/peaceiris/actions-mdbook/commit/e14a664866888fe9287072cbdce20429aa2ec0e0)) ### ci * add workflow_dispatch ([5fa688e](https://github.com/peaceiris/actions-mdbook/commit/5fa688e1e2a11488b894e4735cd5ea348817c594)) * allow dependency-type production ([6759ec3](https://github.com/peaceiris/actions-mdbook/commit/6759ec3d4afc4f0ab3fbfc13743d02f80e314830)) * bump actions/setup-node from v2.1.2 to v2.1.3 (#357) ([43f3f78](https://github.com/peaceiris/actions-mdbook/commit/43f3f780ac00aaddc20829e42b7a6a20d19af991)), closes [#357](https://github.com/peaceiris/actions-mdbook/issues/357) * bump actions/setup-node from v2.1.3 to v2.1.4 (#359) ([f658008](https://github.com/peaceiris/actions-mdbook/commit/f6580088a759ac9b775cd8ce47bbcf9b1af010dc)), closes [#359](https://github.com/peaceiris/actions-mdbook/issues/359) * bump codecov/codecov-action from v1.0.13 to v1.0.14 (#351) ([7431cad](https://github.com/peaceiris/actions-mdbook/commit/7431cad37c2425e8759bf8b38ed6d12ee5e799e0)), closes [#351](https://github.com/peaceiris/actions-mdbook/issues/351) * bump codecov/codecov-action from v1.0.14 to v1.0.15 (#353) ([2b39b4d](https://github.com/peaceiris/actions-mdbook/commit/2b39b4d281e3f8b633c8deb892e985663280590d)), closes [#353](https://github.com/peaceiris/actions-mdbook/issues/353) * bump codecov/codecov-action from v1.0.15 to v1.1.0 (#360) ([ac5d7a1](https://github.com/peaceiris/actions-mdbook/commit/ac5d7a11350113665f26cb076eea1a92a20addfe)), closes [#360](https://github.com/peaceiris/actions-mdbook/issues/360) * bump codecov/codecov-action from v1.1.0 to v1.1.1 (#361) ([f9c2d98](https://github.com/peaceiris/actions-mdbook/commit/f9c2d9860aa8286912d9d9eabe7737cad8cc85f7)), closes [#361](https://github.com/peaceiris/actions-mdbook/issues/361) * bump codecov/codecov-action from v1.1.1 to v1.2.0 (#362) ([1df2021](https://github.com/peaceiris/actions-mdbook/commit/1df202155aba45bc40adb7dba8dd2627d84f99fb)), closes [#362](https://github.com/peaceiris/actions-mdbook/issues/362) * bump codecov/codecov-action from v1.2.0 to v1.2.1 (#363) ([cb200ba](https://github.com/peaceiris/actions-mdbook/commit/cb200ba4803f70ea02674ecb610375289be5f3c3)), closes [#363](https://github.com/peaceiris/actions-mdbook/issues/363) * remove CODECOV_TOKEN (#365) ([0ab46a4](https://github.com/peaceiris/actions-mdbook/commit/0ab46a4ddf5dced80104b05bd20e274203553dbb)), closes [#365](https://github.com/peaceiris/actions-mdbook/issues/365) * remove options no longer needed (#355) ([e967196](https://github.com/peaceiris/actions-mdbook/commit/e9671960978b5244972878c910cc3518fd28f731)), closes [#355](https://github.com/peaceiris/actions-mdbook/issues/355) ### deps * bump @actions/tool-cache from 1.6.0 to 1.6.1 (#352) ([87351a3](https://github.com/peaceiris/actions-mdbook/commit/87351a334fdf38216b9998d1ffac581b2aeda0bf)), closes [#352](https://github.com/peaceiris/actions-mdbook/issues/352) * bump @types/node from 12.12.63 to 12.12.64 (#345) ([85764a7](https://github.com/peaceiris/actions-mdbook/commit/85764a7fcf9c92edfd28f997ddf651544abf2693)), closes [#345](https://github.com/peaceiris/actions-mdbook/issues/345) * bump @types/node from 12.12.64 to 12.12.66 (#346) ([50f6fd6](https://github.com/peaceiris/actions-mdbook/commit/50f6fd6b6582e8d300d65371b4162aa5110a17da)), closes [#346](https://github.com/peaceiris/actions-mdbook/issues/346) * bump @types/node from 12.12.66 to 12.12.67 (#349) ([12dcaaa](https://github.com/peaceiris/actions-mdbook/commit/12dcaaa77b2a169a00abe7420a9f6f6615c2c4e7)), closes [#349](https://github.com/peaceiris/actions-mdbook/issues/349) * bump eslint from 7.10.0 to 7.11.0 (#347) ([59604a3](https://github.com/peaceiris/actions-mdbook/commit/59604a3ac2962c4345b7c35ce1860ef6a0fb7245)), closes [#347](https://github.com/peaceiris/actions-mdbook/issues/347) * bump ini from 1.3.5 to 1.3.8 (#358) ([dba1474](https://github.com/peaceiris/actions-mdbook/commit/dba14740c50393ba507a3fcc429b0eef161e6482)), closes [#358](https://github.com/peaceiris/actions-mdbook/issues/358) * bump jest-circus from 26.5.1 to 26.5.2 (#344) ([36bf729](https://github.com/peaceiris/actions-mdbook/commit/36bf729c1ef4d7d7e0b04478b1ef7400a6166959)), closes [#344](https://github.com/peaceiris/actions-mdbook/issues/344) * bump jest-circus from 26.5.2 to 26.5.3 (#348) ([ca483b8](https://github.com/peaceiris/actions-mdbook/commit/ca483b8138365d957b2b8c33f28fb454bf123618)), closes [#348](https://github.com/peaceiris/actions-mdbook/issues/348) * bump node from 12.18.4 to 12.19.0 (#350) ([1a08441](https://github.com/peaceiris/actions-mdbook/commit/1a08441680aade0e87125f2e060d441da9736022)), closes [#350](https://github.com/peaceiris/actions-mdbook/issues/350) * bump node from 12.19.0 to 12.19.1 (#354) ([10da26e](https://github.com/peaceiris/actions-mdbook/commit/10da26ebfb657ade3ec10385e6ef4b1aee32ba2e)), closes [#354](https://github.com/peaceiris/actions-mdbook/issues/354) * bump node from 12.19.1 to 12.20.0 (#356) ([9b5daf9](https://github.com/peaceiris/actions-mdbook/commit/9b5daf9cb4571185ec3d1f179135892dc2230fa1)), closes [#356](https://github.com/peaceiris/actions-mdbook/issues/356) * bump node from 12.20.0 to 12.20.1 (#364) ([5c5d965](https://github.com/peaceiris/actions-mdbook/commit/5c5d965726fc320663c5523e3d65f0eee6c5c47a)), closes [#364](https://github.com/peaceiris/actions-mdbook/issues/364) * update devDependencies (#368) ([8895cd8](https://github.com/peaceiris/actions-mdbook/commit/8895cd8bc0c4bb1b8a7bab68a3a061fa8ce9edc9)), closes [#368](https://github.com/peaceiris/actions-mdbook/issues/368) ### docs * bump mdbook from 0.4.1 to 0.4.5 ([398b6a7](https://github.com/peaceiris/actions-mdbook/commit/398b6a7fd641ca475bb44499ae62c7b45d8b9f5a)) * bump mdbook from 0.4.5 to 0.4.6 (#367) ([312679c](https://github.com/peaceiris/actions-mdbook/commit/312679c5ac29b07eef296a96757dd716749266e4)), closes [#367](https://github.com/peaceiris/actions-mdbook/issues/367) * improve header ([7275f00](https://github.com/peaceiris/actions-mdbook/commit/7275f005ddec5743ad0a286be135c47f05973233)) ## [1.1.13](https://github.com/peaceiris/actions-mdbook/compare/v1.1.12...v1.1.13) (2020-10-06) ### ci * add codeql workflow ([6ee9a5f](https://github.com/peaceiris/actions-mdbook/commit/6ee9a5f07f06744bd724b75f444c9dc18000aff9)) * add mdbook 0.4.0 ([1c15fb9](https://github.com/peaceiris/actions-mdbook/commit/1c15fb9297f7879698a43b0ac9af67af2de15e4c)) * bump actions/setup-node from v2.0.0 to v2.1.0 (#254) ([a3193c3](https://github.com/peaceiris/actions-mdbook/commit/a3193c38b710183751b7c226fa0cb17e6f9d5891)), closes [#254](https://github.com/peaceiris/actions-mdbook/issues/254) * bump actions/setup-node from v2.1.0 to v2.1.1 (#276) ([34364cc](https://github.com/peaceiris/actions-mdbook/commit/34364ccb0b21cf24ce4a52c013b4d1603f15ffd2)), closes [#276](https://github.com/peaceiris/actions-mdbook/issues/276) * bump actions/setup-node from v2.1.1 to v2.1.2 (#340) ([b6ce390](https://github.com/peaceiris/actions-mdbook/commit/b6ce390181f0d6ecd33a3d998491b2888e6332c3)), closes [#340](https://github.com/peaceiris/actions-mdbook/issues/340) * bump codecov/codecov-action from v1.0.10 to v1.0.11 (#271) ([13a9397](https://github.com/peaceiris/actions-mdbook/commit/13a939774f19ed327bcc025c46c3302ab45ef549)), closes [#271](https://github.com/peaceiris/actions-mdbook/issues/271) * bump codecov/codecov-action from v1.0.11 to v1.0.12 (#277) ([7cebc93](https://github.com/peaceiris/actions-mdbook/commit/7cebc9315abde3a755db396feb68ef716724db94)), closes [#277](https://github.com/peaceiris/actions-mdbook/issues/277) * bump codecov/codecov-action from v1.0.12 to v1.0.13 (#299) ([e920f99](https://github.com/peaceiris/actions-mdbook/commit/e920f9978615306aa68fe7cd19a9a24504ffd7bb)), closes [#299](https://github.com/peaceiris/actions-mdbook/issues/299) * bump codecov/codecov-action from v1.0.7 to v1.0.10 (#256) ([13ad726](https://github.com/peaceiris/actions-mdbook/commit/13ad7260ebd3c586aa629d52b84e0bc45fc58aa0)), closes [#256](https://github.com/peaceiris/actions-mdbook/issues/256) * remove open-pull-requests-limit ([9f87969](https://github.com/peaceiris/actions-mdbook/commit/9f87969126a74b520d39ed4941fbb1789700e067)) ### deps * bump @actions/core from 1.2.4 to 1.2.5 (#309) ([997d2bc](https://github.com/peaceiris/actions-mdbook/commit/997d2bc224daac19bc276fecaaa2a87581b627ca)), closes [#309](https://github.com/peaceiris/actions-mdbook/issues/309) * bump @actions/core from 1.2.5 to 1.2.6 (#337) ([24b2214](https://github.com/peaceiris/actions-mdbook/commit/24b2214caee51ef1f18cda9f154bc38c8dadda77)), closes [#337](https://github.com/peaceiris/actions-mdbook/issues/337) * bump @actions/tool-cache from 1.5.5 to 1.6.0 (#269) ([f3be388](https://github.com/peaceiris/actions-mdbook/commit/f3be388bf32fdedb95fa0d3d39b681ea911d6d71)), closes [#269](https://github.com/peaceiris/actions-mdbook/issues/269) * bump @types/jest from 26.0.0 to 26.0.3 (#251) ([dd160f2](https://github.com/peaceiris/actions-mdbook/commit/dd160f2e201285c160ebf7d32b98b76cc34b3c8e)), closes [#251](https://github.com/peaceiris/actions-mdbook/issues/251) * bump @types/jest from 26.0.10 to 26.0.12 (#312) ([98a9737](https://github.com/peaceiris/actions-mdbook/commit/98a9737cbb72414b3989394d56e3c43ea47e5b37)), closes [#312](https://github.com/peaceiris/actions-mdbook/issues/312) * bump @types/jest from 26.0.12 to 26.0.13 (#316) ([a3caf13](https://github.com/peaceiris/actions-mdbook/commit/a3caf139db25001d88439d2d6ccda7a3615577f4)), closes [#316](https://github.com/peaceiris/actions-mdbook/issues/316) * bump @types/jest from 26.0.13 to 26.0.14 (#331) ([3338fa9](https://github.com/peaceiris/actions-mdbook/commit/3338fa9d87cad353e233d6aa84ca9a618898a7c2)), closes [#331](https://github.com/peaceiris/actions-mdbook/issues/331) * bump @types/jest from 26.0.3 to 26.0.4 (#263) ([1d41da6](https://github.com/peaceiris/actions-mdbook/commit/1d41da65a54dd7fa890da245585ce11705475555)), closes [#263](https://github.com/peaceiris/actions-mdbook/issues/263) * bump @types/jest from 26.0.4 to 26.0.5 (#272) ([82c747b](https://github.com/peaceiris/actions-mdbook/commit/82c747b910797dedc05273069f8e0293d76d5367)), closes [#272](https://github.com/peaceiris/actions-mdbook/issues/272) * bump @types/jest from 26.0.5 to 26.0.7 (#278) ([77cd1d8](https://github.com/peaceiris/actions-mdbook/commit/77cd1d8000389f66084b4132cff6bed09d388522)), closes [#278](https://github.com/peaceiris/actions-mdbook/issues/278) * bump @types/jest from 26.0.7 to 26.0.8 (#286) ([49b7e65](https://github.com/peaceiris/actions-mdbook/commit/49b7e659782aa1ccca0fa9e9229efe124bdd4672)), closes [#286](https://github.com/peaceiris/actions-mdbook/issues/286) * bump @types/jest from 26.0.8 to 26.0.9 (#290) ([920f637](https://github.com/peaceiris/actions-mdbook/commit/920f6375b22e312790c87fe01b2601f7f6c584ac)), closes [#290](https://github.com/peaceiris/actions-mdbook/issues/290) * bump @types/jest from 26.0.9 to 26.0.10 (#295) ([5a978ad](https://github.com/peaceiris/actions-mdbook/commit/5a978ad0c3b536cf2238f3440da8fdeed18eb6cd)), closes [#295](https://github.com/peaceiris/actions-mdbook/issues/295) * bump @types/node from 12.12.47 to 12.12.48 (#261) ([fccaad5](https://github.com/peaceiris/actions-mdbook/commit/fccaad5d5b82ccd8a80faefc4da5c5a429846ffc)), closes [#261](https://github.com/peaceiris/actions-mdbook/issues/261) * bump @types/node from 12.12.48 to 12.12.50 (#264) ([122603d](https://github.com/peaceiris/actions-mdbook/commit/122603df8900707c2b832ad3018704d34e6c9229)), closes [#264](https://github.com/peaceiris/actions-mdbook/issues/264) * bump @types/node from 12.12.50 to 12.12.51 (#275) ([f4e7601](https://github.com/peaceiris/actions-mdbook/commit/f4e7601416ec74f48b2b3b36b42af65606c3193b)), closes [#275](https://github.com/peaceiris/actions-mdbook/issues/275) * bump @types/node from 12.12.51 to 12.12.52 (#279) ([689b128](https://github.com/peaceiris/actions-mdbook/commit/689b128475f6d744824ab2edbbcf1f5973cd765d)), closes [#279](https://github.com/peaceiris/actions-mdbook/issues/279) * bump @types/node from 12.12.52 to 12.12.53 (#280) ([651257f](https://github.com/peaceiris/actions-mdbook/commit/651257fefafb143a72d520b095f186c4efc92a9d)), closes [#280](https://github.com/peaceiris/actions-mdbook/issues/280) * bump @types/node from 12.12.53 to 12.12.54 (#289) ([27db711](https://github.com/peaceiris/actions-mdbook/commit/27db71186b757ead8266bc63e352cbed8c0b0431)), closes [#289](https://github.com/peaceiris/actions-mdbook/issues/289) * bump @types/node from 12.12.54 to 12.12.55 (#315) ([02d1dfe](https://github.com/peaceiris/actions-mdbook/commit/02d1dfeda89ed06e4db349a7df8e52a59d9c3c75)), closes [#315](https://github.com/peaceiris/actions-mdbook/issues/315) * bump @types/node from 12.12.55 to 12.12.56 (#323) ([1833c30](https://github.com/peaceiris/actions-mdbook/commit/1833c30e955ef4f1808119965aaa0b42ebc542a0)), closes [#323](https://github.com/peaceiris/actions-mdbook/issues/323) * bump @types/node from 12.12.56 to 12.12.57 (#324) ([11916ea](https://github.com/peaceiris/actions-mdbook/commit/11916ea2eb71375864a2cbf2cb6079dd8982cd35)), closes [#324](https://github.com/peaceiris/actions-mdbook/issues/324) * bump @types/node from 12.12.57 to 12.12.58 (#325) ([9f941a3](https://github.com/peaceiris/actions-mdbook/commit/9f941a3d193f341368b8484746a3fbefda158e74)), closes [#325](https://github.com/peaceiris/actions-mdbook/issues/325) * bump @types/node from 12.12.58 to 12.12.59 (#329) ([5407dee](https://github.com/peaceiris/actions-mdbook/commit/5407dee20a2290dd4bdc40639b7a2d55fa5385fc)), closes [#329](https://github.com/peaceiris/actions-mdbook/issues/329) * bump @types/node from 12.12.59 to 12.12.61 (#333) ([1bdb187](https://github.com/peaceiris/actions-mdbook/commit/1bdb1870f5e2cf94ebb74c2142586fb8007f6c07)), closes [#333](https://github.com/peaceiris/actions-mdbook/issues/333) * bump @types/node from 12.12.61 to 12.12.62 (#334) ([cbfeedb](https://github.com/peaceiris/actions-mdbook/commit/cbfeedbc6ed94891b5bd2af781d3ab0e2dd79637)), closes [#334](https://github.com/peaceiris/actions-mdbook/issues/334) * bump @types/node from 12.12.62 to 12.12.63 (#341) ([169b776](https://github.com/peaceiris/actions-mdbook/commit/169b7766467569df5ef77b769bc16a12109e7897)), closes [#341](https://github.com/peaceiris/actions-mdbook/issues/341) * bump @typescript-eslint/parser from 3.10.0 to 3.10.1 (#306) ([73664c1](https://github.com/peaceiris/actions-mdbook/commit/73664c160e28b5943fe21864b9d6876b7874a617)), closes [#306](https://github.com/peaceiris/actions-mdbook/issues/306) * bump @typescript-eslint/parser from 3.10.1 to 4.0.1 (#313) ([18acd56](https://github.com/peaceiris/actions-mdbook/commit/18acd56fa134019c9dcee97cbefcdab709e91929)), closes [#313](https://github.com/peaceiris/actions-mdbook/issues/313) * bump @typescript-eslint/parser from 3.3.0 to 3.4.0 (#248) ([2e19fe4](https://github.com/peaceiris/actions-mdbook/commit/2e19fe4cd2539b303d47a22a7440d0c8ac0d16be)), closes [#248](https://github.com/peaceiris/actions-mdbook/issues/248) * bump @typescript-eslint/parser from 3.4.0 to 3.5.0 (#253) ([369a744](https://github.com/peaceiris/actions-mdbook/commit/369a7449e517238f0d9fb3712f0dfa5b7ac2b67d)), closes [#253](https://github.com/peaceiris/actions-mdbook/issues/253) * bump @typescript-eslint/parser from 3.5.0 to 3.6.0 (#262) ([5e65363](https://github.com/peaceiris/actions-mdbook/commit/5e653635cb2377bf6e2cb451721c8d0eea97583e)), closes [#262](https://github.com/peaceiris/actions-mdbook/issues/262) * bump @typescript-eslint/parser from 3.6.0 to 3.6.1 (#267) ([519ec90](https://github.com/peaceiris/actions-mdbook/commit/519ec90869e42ff9f9b88e8a6362bd47fe25c146)), closes [#267](https://github.com/peaceiris/actions-mdbook/issues/267) * bump @typescript-eslint/parser from 3.6.1 to 3.7.0 (#274) ([064bada](https://github.com/peaceiris/actions-mdbook/commit/064badab8179271f1e11d8ddb16fe74fe077e6c6)), closes [#274](https://github.com/peaceiris/actions-mdbook/issues/274) * bump @typescript-eslint/parser from 3.7.0 to 3.7.1 (#282) ([ff3f199](https://github.com/peaceiris/actions-mdbook/commit/ff3f199d95ab859ed562f803200299dfd7df8b5f)), closes [#282](https://github.com/peaceiris/actions-mdbook/issues/282) * bump @typescript-eslint/parser from 3.7.1 to 3.8.0 (#288) ([70494f9](https://github.com/peaceiris/actions-mdbook/commit/70494f97c355070031ac28677a42ef729706e67a)), closes [#288](https://github.com/peaceiris/actions-mdbook/issues/288) * bump @typescript-eslint/parser from 3.8.0 to 3.9.0 (#292) ([1979998](https://github.com/peaceiris/actions-mdbook/commit/197999874e638b74f0e80fe3509b9d4014569d42)), closes [#292](https://github.com/peaceiris/actions-mdbook/issues/292) * bump @typescript-eslint/parser from 3.9.0 to 3.9.1 (#298) ([6a270c9](https://github.com/peaceiris/actions-mdbook/commit/6a270c9333cf736eaa18ec2760a757895f9ff61e)), closes [#298](https://github.com/peaceiris/actions-mdbook/issues/298) * bump @typescript-eslint/parser from 3.9.1 to 3.10.0 (#304) ([5414558](https://github.com/peaceiris/actions-mdbook/commit/5414558cc228ebfdf95329fef7bae1be8a041f10)), closes [#304](https://github.com/peaceiris/actions-mdbook/issues/304) * bump @typescript-eslint/parser from 4.0.1 to 4.1.0 (#319) ([5b50303](https://github.com/peaceiris/actions-mdbook/commit/5b50303c6aa62b5b3c61769a6e331ee450a643c1)), closes [#319](https://github.com/peaceiris/actions-mdbook/issues/319) * bump @typescript-eslint/parser from 4.1.0 to 4.1.1 (#327) ([7ba4ed9](https://github.com/peaceiris/actions-mdbook/commit/7ba4ed927f822f4ef3b7fbe77770258a3387bcfb)), closes [#327](https://github.com/peaceiris/actions-mdbook/issues/327) * bump @typescript-eslint/parser from 4.1.1 to 4.2.0 (#336) ([791d8d0](https://github.com/peaceiris/actions-mdbook/commit/791d8d032a85543f7243360861b1082885f82f83)), closes [#336](https://github.com/peaceiris/actions-mdbook/issues/336) * bump @typescript-eslint/parser from 4.2.0 to 4.3.0 (#339) ([eb11ba9](https://github.com/peaceiris/actions-mdbook/commit/eb11ba9c161a869591419252fa796c515a115062)), closes [#339](https://github.com/peaceiris/actions-mdbook/issues/339) * bump @typescript-eslint/parser from 4.3.0 to 4.4.0 (#343) ([8d34962](https://github.com/peaceiris/actions-mdbook/commit/8d349623964bb065a88d16fca1355e75c96c2402)), closes [#343](https://github.com/peaceiris/actions-mdbook/issues/343) * bump @vercel/ncc from 0.23.0 to 0.24.0 (#308) ([8e7d16f](https://github.com/peaceiris/actions-mdbook/commit/8e7d16f2aba8c70b7c5bad7c7477b69c006c5e52)), closes [#308](https://github.com/peaceiris/actions-mdbook/issues/308) * bump @vercel/ncc from 0.24.0 to 0.24.1 (#328) ([9f6d21c](https://github.com/peaceiris/actions-mdbook/commit/9f6d21c0484ae28ea0b7e914eaff5c8b3404835f)), closes [#328](https://github.com/peaceiris/actions-mdbook/issues/328) * bump eslint from 7.2.0 to 7.3.0 (#247) ([1e6d3be](https://github.com/peaceiris/actions-mdbook/commit/1e6d3be39c31c1ec6355f197f7d80f9e19fa431b)), closes [#247](https://github.com/peaceiris/actions-mdbook/issues/247) * bump eslint from 7.3.0 to 7.3.1 (#249) ([6a59229](https://github.com/peaceiris/actions-mdbook/commit/6a592290c23dd9708d5bfcda02553763425660f8)), closes [#249](https://github.com/peaceiris/actions-mdbook/issues/249) * bump eslint from 7.3.1 to 7.4.0 (#260) ([981ca1a](https://github.com/peaceiris/actions-mdbook/commit/981ca1a5c41e9805de300151e74be0af1086d3db)), closes [#260](https://github.com/peaceiris/actions-mdbook/issues/260) * bump eslint from 7.4.0 to 7.5.0 (#273) ([f8e8053](https://github.com/peaceiris/actions-mdbook/commit/f8e80532ced998452247329ac051fd310bcf1338)), closes [#273](https://github.com/peaceiris/actions-mdbook/issues/273) * bump eslint from 7.5.0 to 7.6.0 (#287) ([5bf6055](https://github.com/peaceiris/actions-mdbook/commit/5bf6055bf1b26cfe067ceb31cb9fac45c555e3fc)), closes [#287](https://github.com/peaceiris/actions-mdbook/issues/287) * bump eslint from 7.6.0 to 7.7.0 (#297) ([a1dc5ed](https://github.com/peaceiris/actions-mdbook/commit/a1dc5ed7b6e3cb341f599ad0832f91afb2afc9fb)), closes [#297](https://github.com/peaceiris/actions-mdbook/issues/297) * bump eslint from 7.7.0 to 7.8.0 (#311) ([490eb9f](https://github.com/peaceiris/actions-mdbook/commit/490eb9fddf370eeddfab6e78ecc6e88facf4d64b)), closes [#311](https://github.com/peaceiris/actions-mdbook/issues/311) * bump eslint from 7.8.0 to 7.8.1 (#314) ([1d06c7a](https://github.com/peaceiris/actions-mdbook/commit/1d06c7acbd44c2234b8cad62d21336a1c568b578)), closes [#314](https://github.com/peaceiris/actions-mdbook/issues/314) * bump eslint from 7.8.1 to 7.9.0 (#326) ([57db905](https://github.com/peaceiris/actions-mdbook/commit/57db90590c02eb7e0f3d1a251fe22763896864c8)), closes [#326](https://github.com/peaceiris/actions-mdbook/issues/326) * bump eslint from 7.9.0 to 7.10.0 (#338) ([15f1e06](https://github.com/peaceiris/actions-mdbook/commit/15f1e063ada38dbc4e96c13758cfef5be272ac07)), closes [#338](https://github.com/peaceiris/actions-mdbook/issues/338) * bump husky from 4.2.5 to 4.3.0 (#320) ([f1f61d7](https://github.com/peaceiris/actions-mdbook/commit/f1f61d7881a8fef382d6291369e3306de27123b2)), closes [#320](https://github.com/peaceiris/actions-mdbook/issues/320) * bump jest-circus from 26.0.1 to 26.1.0 (#250) ([d62b5e3](https://github.com/peaceiris/actions-mdbook/commit/d62b5e3763139dca3cd0140e37c347bb619a94ad)), closes [#250](https://github.com/peaceiris/actions-mdbook/issues/250) * bump jest-circus from 26.1.0 to 26.2.1 (#284) ([7624eac](https://github.com/peaceiris/actions-mdbook/commit/7624eac54bb7d8623e31a4c4adcbe3b6eddfb703)), closes [#284](https://github.com/peaceiris/actions-mdbook/issues/284) * bump jest-circus from 26.2.1 to 26.2.2 (#285) ([359994b](https://github.com/peaceiris/actions-mdbook/commit/359994b61ea630f5d27f12862e06eeaf3755b21b)), closes [#285](https://github.com/peaceiris/actions-mdbook/issues/285) * bump jest-circus from 26.2.2 to 26.3.0 (#291) ([ef055f3](https://github.com/peaceiris/actions-mdbook/commit/ef055f317047f3e05caa67b9035ddb7489400097)), closes [#291](https://github.com/peaceiris/actions-mdbook/issues/291) * bump jest-circus from 26.3.0 to 26.4.0 (#294) ([22371b5](https://github.com/peaceiris/actions-mdbook/commit/22371b5cf1ee31373491837c781a21156e450cec)), closes [#294](https://github.com/peaceiris/actions-mdbook/issues/294) * bump jest-circus from 26.4.0 to 26.4.1 (#300) ([d287675](https://github.com/peaceiris/actions-mdbook/commit/d28767571f8a2955e3ecc9d15cfa454ae8e400ce)), closes [#300](https://github.com/peaceiris/actions-mdbook/issues/300) * bump jest-circus from 26.4.1 to 26.4.2 (#302) ([3b41805](https://github.com/peaceiris/actions-mdbook/commit/3b4180530746709f0fd70f52855f00f84e63d8dd)), closes [#302](https://github.com/peaceiris/actions-mdbook/issues/302) * bump jest-circus from 26.4.2 to 26.5.1 (#342) ([722cfbf](https://github.com/peaceiris/actions-mdbook/commit/722cfbfc873b93e080e40c5da8dd855d8c484149)), closes [#342](https://github.com/peaceiris/actions-mdbook/issues/342) * bump lint-staged from 10.2.11 to 10.2.13 (#307) ([e957bc4](https://github.com/peaceiris/actions-mdbook/commit/e957bc41f360c9933c1d061b9d2c927265eb4f87)), closes [#307](https://github.com/peaceiris/actions-mdbook/issues/307) * bump lint-staged from 10.2.13 to 10.3.0 (#317) ([40bd8d4](https://github.com/peaceiris/actions-mdbook/commit/40bd8d466667c1099939e8c295ba6a05d15ddbdc)), closes [#317](https://github.com/peaceiris/actions-mdbook/issues/317) * bump lint-staged from 10.3.0 to 10.4.0 (#332) ([1e8c39d](https://github.com/peaceiris/actions-mdbook/commit/1e8c39d8ba1949c3b07816c87a68b39e825a1f0f)), closes [#332](https://github.com/peaceiris/actions-mdbook/issues/332) * bump lodash from 4.17.15 to 4.17.19 (#270) ([573ca96](https://github.com/peaceiris/actions-mdbook/commit/573ca96c821a5da5ed11e1e8d620c1015544db2f)), closes [#270](https://github.com/peaceiris/actions-mdbook/issues/270) * bump nock from 12.0.3 to 13.0.0 (#252) ([2f1d735](https://github.com/peaceiris/actions-mdbook/commit/2f1d735bf5538eaf114925ec98d103af384ea05e)), closes [#252](https://github.com/peaceiris/actions-mdbook/issues/252) * bump nock from 13.0.0 to 13.0.1 (#255) ([5e7c0de](https://github.com/peaceiris/actions-mdbook/commit/5e7c0de20270ff107dfc74038f91685eb7cbe410)), closes [#255](https://github.com/peaceiris/actions-mdbook/issues/255) * bump nock from 13.0.1 to 13.0.2 (#258) ([1760d79](https://github.com/peaceiris/actions-mdbook/commit/1760d791221c822ddb08fa931b539e035567923f)), closes [#258](https://github.com/peaceiris/actions-mdbook/issues/258) * bump nock from 13.0.2 to 13.0.3 (#281) ([7bab638](https://github.com/peaceiris/actions-mdbook/commit/7bab638570557e353f97b05fb01d00eb12dba5da)), closes [#281](https://github.com/peaceiris/actions-mdbook/issues/281) * bump nock from 13.0.3 to 13.0.4 (#293) ([f2db7a7](https://github.com/peaceiris/actions-mdbook/commit/f2db7a774ec1c9ee37e6e93b9e07488c46f1c21b)), closes [#293](https://github.com/peaceiris/actions-mdbook/issues/293) * bump node from 12.18.1 to 12.18.2 (#259) ([0d2b100](https://github.com/peaceiris/actions-mdbook/commit/0d2b10003052be2eba0d819d7fde848bec04ce4a)), closes [#259](https://github.com/peaceiris/actions-mdbook/issues/259) * bump node from 12.18.2 to 12.18.3 ([d92f251](https://github.com/peaceiris/actions-mdbook/commit/d92f25126a27018833cc685e1409b6e5840e6d6d)) * bump node from 12.18.3 to 12.18.4 (#335) ([9a82443](https://github.com/peaceiris/actions-mdbook/commit/9a82443f05d9340d13bd42fd8bc7bf76c5bed777)), closes [#335](https://github.com/peaceiris/actions-mdbook/issues/335) * bump node-fetch from 2.6.0 to 2.6.1 (#318) ([bc81467](https://github.com/peaceiris/actions-mdbook/commit/bc8146778d4901de32e84f6c332459db57766407)), closes [#318](https://github.com/peaceiris/actions-mdbook/issues/318) * bump prettier from 2.0.5 to 2.1.0 (#303) ([f85453e](https://github.com/peaceiris/actions-mdbook/commit/f85453e61f885373bbaff49236620e8916936b09)), closes [#303](https://github.com/peaceiris/actions-mdbook/issues/303) * bump prettier from 2.1.0 to 2.1.1 (#310) ([2b9241e](https://github.com/peaceiris/actions-mdbook/commit/2b9241e333d5d2c22f73e1ebf615c9c049b98acc)), closes [#310](https://github.com/peaceiris/actions-mdbook/issues/310) * bump prettier from 2.1.1 to 2.1.2 (#330) ([05ea679](https://github.com/peaceiris/actions-mdbook/commit/05ea679f0a1b6b4955186724c3b7f803dd1b8faf)), closes [#330](https://github.com/peaceiris/actions-mdbook/issues/330) * bump standard-version from 8.0.0 to 8.0.1 (#265) ([ecbe908](https://github.com/peaceiris/actions-mdbook/commit/ecbe9086238e56dd126f6debc1efe171db6c2763)), closes [#265](https://github.com/peaceiris/actions-mdbook/issues/265) * bump standard-version from 8.0.1 to 8.0.2 (#266) ([d040e9d](https://github.com/peaceiris/actions-mdbook/commit/d040e9d3de94ad8e768549ae66c97cf911c78815)), closes [#266](https://github.com/peaceiris/actions-mdbook/issues/266) * bump standard-version from 8.0.2 to 9.0.0 (#296) ([278f885](https://github.com/peaceiris/actions-mdbook/commit/278f8856037f569cfec79463db3cf430a508a143)), closes [#296](https://github.com/peaceiris/actions-mdbook/issues/296) * bump typescript from 3.9.5 to 3.9.6 (#257) ([36cc184](https://github.com/peaceiris/actions-mdbook/commit/36cc184f6139c392fa2371f56c1bc13b994ccc6b)), closes [#257](https://github.com/peaceiris/actions-mdbook/issues/257) * bump typescript from 3.9.6 to 3.9.7 (#268) ([1620baa](https://github.com/peaceiris/actions-mdbook/commit/1620baa2921c2d150d92fa6fb9aa70b7ef80b8d5)), closes [#268](https://github.com/peaceiris/actions-mdbook/issues/268) * change @zeit/ncc to @vercel/ncc (#301) ([f3459ff](https://github.com/peaceiris/actions-mdbook/commit/f3459ff3e3b26b19c8c38bc163cef508f891f10e)), closes [#301](https://github.com/peaceiris/actions-mdbook/issues/301) ### docs * bump mdbook from 0.3.7 to 0.4.1 ([773a96f](https://github.com/peaceiris/actions-mdbook/commit/773a96f683ff8d1124114f2f7e017ac1fdc19fa3)) ## [1.1.12](https://github.com/peaceiris/actions-mdbook/compare/v1.1.11...v1.1.12) (2020-06-21) ### chore * Add CODEOWNERS ([51b92bc](https://github.com/peaceiris/actions-mdbook/commit/51b92bc5a9f17ee4b7ea77ba0cfa20df0a2c9dd5)) * update url ([4c2d24c](https://github.com/peaceiris/actions-mdbook/commit/4c2d24cd712096e3eada03238c978daca3695492)) ### ci * add package-ecosystem github-actions ([0a75b91](https://github.com/peaceiris/actions-mdbook/commit/0a75b91a824f0bbac13e5f3aa4813c9dd19983f9)) * Add ubuntu-16.04 ([43a7c69](https://github.com/peaceiris/actions-mdbook/commit/43a7c69f05ba421f09547943ec5bd0dc28c0b5b8)) * bump actions/setup-node from v1 to v2.0.0 (#244) ([0376301](https://github.com/peaceiris/actions-mdbook/commit/037630147f8694d5be56405fa4b7d2b6bf620ff9)), closes [#244](https://github.com/peaceiris/actions-mdbook/issues/244) * bump codecov/codecov-action from v1 to v1.0.7 (#245) ([0a266e2](https://github.com/peaceiris/actions-mdbook/commit/0a266e2f2bf0f07dce87c688b103eb312eb3cba7)), closes [#245](https://github.com/peaceiris/actions-mdbook/issues/245) * Change update_type from all to semver:minor ([61e492a](https://github.com/peaceiris/actions-mdbook/commit/61e492a06dc291e8d11ea8da1d7682f5a10a19a7)) * Enhance test workflow (#198) ([5cfece2](https://github.com/peaceiris/actions-mdbook/commit/5cfece2ba43befe5c7efd98a268e7ff7c6f1858e)), closes [#198](https://github.com/peaceiris/actions-mdbook/issues/198) * remove pull_request.types ([3045e66](https://github.com/peaceiris/actions-mdbook/commit/3045e6638554fbc5cbd5bd1e762ec9cbe6386c60)) * Update Dependabot config file (#232) ([c0c3ce9](https://github.com/peaceiris/actions-mdbook/commit/c0c3ce921c020800e08992aa1b612ba448646300)), closes [#232](https://github.com/peaceiris/actions-mdbook/issues/232) ### deps * bump @actions/core from 1.2.3 to 1.2.4 (#192) ([a848474](https://github.com/peaceiris/actions-mdbook/commit/a84847483f09d4c08189d9156dc8ff8a859799c5)), closes [#192](https://github.com/peaceiris/actions-mdbook/issues/192) * bump @actions/exec from 1.0.3 to 1.0.4 (#185) ([7f069b2](https://github.com/peaceiris/actions-mdbook/commit/7f069b2e0fd933d5561ea671771e1a80d45dc39b)), closes [#185](https://github.com/peaceiris/actions-mdbook/issues/185) * bump @actions/tool-cache from 1.3.4 to 1.3.5 (#212) ([d69fec9](https://github.com/peaceiris/actions-mdbook/commit/d69fec9968d3e010dd5b1484a70f9b60703ed49c)), closes [#212](https://github.com/peaceiris/actions-mdbook/issues/212) * bump @actions/tool-cache from 1.3.5 to 1.5.5 (#221) ([c4899ed](https://github.com/peaceiris/actions-mdbook/commit/c4899edb27651f2509b427c75db31c8fce97bd77)), closes [#221](https://github.com/peaceiris/actions-mdbook/issues/221) * bump @types/jest from 25.2.1 to 25.2.2 (#211) ([5ed67ba](https://github.com/peaceiris/actions-mdbook/commit/5ed67ba00943871f37d38036a7617381a5694b52)), closes [#211](https://github.com/peaceiris/actions-mdbook/issues/211) * bump @types/jest from 25.2.2 to 25.2.3 (#216) ([5299363](https://github.com/peaceiris/actions-mdbook/commit/529936375780905c40b77a0d235581c13787dd3f)), closes [#216](https://github.com/peaceiris/actions-mdbook/issues/216) * bump @types/jest from 25.2.3 to 26.0.0 (#239) ([ea3f17f](https://github.com/peaceiris/actions-mdbook/commit/ea3f17fc6d2f79795bde087e6e29513b67a30e0c)), closes [#239](https://github.com/peaceiris/actions-mdbook/issues/239) * bump @types/node from 12.12.37 to 12.12.38 (#202) ([bb100d8](https://github.com/peaceiris/actions-mdbook/commit/bb100d893ab649254e81d580ec7592f26a69c044)), closes [#202](https://github.com/peaceiris/actions-mdbook/issues/202) * bump @types/node from 12.12.38 to 12.12.41 (#219) ([4460a9b](https://github.com/peaceiris/actions-mdbook/commit/4460a9b8e1fa63b9f98bea20a0f016649db8f339)), closes [#219](https://github.com/peaceiris/actions-mdbook/issues/219) * bump @types/node from 12.12.41 to 12.12.42 (#226) ([d3219c0](https://github.com/peaceiris/actions-mdbook/commit/d3219c0ce3004f53d88da999089fd358b4d55fe4)), closes [#226](https://github.com/peaceiris/actions-mdbook/issues/226) * bump @types/node from 12.12.42 to 12.12.43 (#231) ([012d59a](https://github.com/peaceiris/actions-mdbook/commit/012d59a5f3c6cd5a71b3861ae8d1e41a9c689d96)), closes [#231](https://github.com/peaceiris/actions-mdbook/issues/231) * bump @types/node from 12.12.43 to 12.12.47 (#238) ([922c108](https://github.com/peaceiris/actions-mdbook/commit/922c1086ecdc62f1f76de975913753af86b66f4e)), closes [#238](https://github.com/peaceiris/actions-mdbook/issues/238) * bump @typescript-eslint/parser from 2.30.0 to 2.31.0 (#199) ([5d96605](https://github.com/peaceiris/actions-mdbook/commit/5d96605cbe277ed3b156608723a05a83a7f8c62a)), closes [#199](https://github.com/peaceiris/actions-mdbook/issues/199) * bump @typescript-eslint/parser from 2.31.0 to 2.32.0 (#206) ([cd904c8](https://github.com/peaceiris/actions-mdbook/commit/cd904c8332e25b22f40b08712fdb2c73ea5331ee)), closes [#206](https://github.com/peaceiris/actions-mdbook/issues/206) * bump @typescript-eslint/parser from 2.32.0 to 2.33.0 (#208) ([4cbbc99](https://github.com/peaceiris/actions-mdbook/commit/4cbbc99fa37dee34ae48698e3aebf53a1349f26f)), closes [#208](https://github.com/peaceiris/actions-mdbook/issues/208) * bump @typescript-eslint/parser from 2.33.0 to 2.34.0 (#214) ([993fddf](https://github.com/peaceiris/actions-mdbook/commit/993fddfa3b1200021e49f9541ed2bbb10d84d792)), closes [#214](https://github.com/peaceiris/actions-mdbook/issues/214) * bump @typescript-eslint/parser from 2.34.0 to 3.0.0 (#222) ([3fee5ea](https://github.com/peaceiris/actions-mdbook/commit/3fee5ea7f3aea0a81cc72383d0e9ae5910f43f8f)), closes [#222](https://github.com/peaceiris/actions-mdbook/issues/222) * bump @typescript-eslint/parser from 3.0.0 to 3.0.1 (#227) ([605c69a](https://github.com/peaceiris/actions-mdbook/commit/605c69a117e0a4b59ddbb2ad5ab0d4c0abb0cd20)), closes [#227](https://github.com/peaceiris/actions-mdbook/issues/227) * bump @typescript-eslint/parser from 3.0.1 to 3.0.2 (#228) ([192d6d2](https://github.com/peaceiris/actions-mdbook/commit/192d6d29eeb00d1280ebfdd54a3091bc1da29082)), closes [#228](https://github.com/peaceiris/actions-mdbook/issues/228) * bump @typescript-eslint/parser from 3.0.2 to 3.1.0 (#230) ([57d0d8d](https://github.com/peaceiris/actions-mdbook/commit/57d0d8d8efff47a89f476b0ecf45d81cac503ed8)), closes [#230](https://github.com/peaceiris/actions-mdbook/issues/230) * bump @typescript-eslint/parser from 3.1.0 to 3.2.0 (#237) ([84b93b7](https://github.com/peaceiris/actions-mdbook/commit/84b93b761f2849939eb1926c308c9382aa54076f)), closes [#237](https://github.com/peaceiris/actions-mdbook/issues/237) * bump @typescript-eslint/parser from 3.2.0 to 3.3.0 (#241) ([0e5022a](https://github.com/peaceiris/actions-mdbook/commit/0e5022aa6324ab9c9ade1eca4bd9c5a8823a10d0)), closes [#241](https://github.com/peaceiris/actions-mdbook/issues/241) * bump @zeit/ncc from 0.22.1 to 0.22.2 (#215) ([55dbe20](https://github.com/peaceiris/actions-mdbook/commit/55dbe205056e34bf3e19a7fd2f198f54a6a2f287)), closes [#215](https://github.com/peaceiris/actions-mdbook/issues/215) * bump @zeit/ncc from 0.22.2 to 0.22.3 (#224) ([107b843](https://github.com/peaceiris/actions-mdbook/commit/107b843dc678cda6c0e617011698674e1485fbf8)), closes [#224](https://github.com/peaceiris/actions-mdbook/issues/224) * bump eslint from 6.8.0 to 7.1.0 (#225) ([e91faa2](https://github.com/peaceiris/actions-mdbook/commit/e91faa268b5ec8f24bc53312d6dc98a1a203ae3d)), closes [#225](https://github.com/peaceiris/actions-mdbook/issues/225) * bump eslint from 7.1.0 to 7.2.0 (#236) ([a172771](https://github.com/peaceiris/actions-mdbook/commit/a172771636afcf34200e6b1036633d87f8903f80)), closes [#236](https://github.com/peaceiris/actions-mdbook/issues/236) * bump jest from 25.5.0 to 25.5.1 (#188) ([a77fe3f](https://github.com/peaceiris/actions-mdbook/commit/a77fe3ff14374c896f6e00c842a8a830b208d437)), closes [#188](https://github.com/peaceiris/actions-mdbook/issues/188) * bump jest from 25.5.1 to 25.5.2 (#190) ([28a1f56](https://github.com/peaceiris/actions-mdbook/commit/28a1f567de907253ed785d22d4992fdc5949ce46)), closes [#190](https://github.com/peaceiris/actions-mdbook/issues/190) * bump jest from 25.5.2 to 25.5.3 (#194) ([5702459](https://github.com/peaceiris/actions-mdbook/commit/57024593ecb2ab27d29b47485b5a6eb1f103ad52)), closes [#194](https://github.com/peaceiris/actions-mdbook/issues/194) * bump jest from 25.5.3 to 25.5.4 (#197) ([bc420b3](https://github.com/peaceiris/actions-mdbook/commit/bc420b32a529a852722da6f449b98453a1025cd6)), closes [#197](https://github.com/peaceiris/actions-mdbook/issues/197) * bump jest-circus from 25.5.0 to 25.5.1 (#187) ([0773964](https://github.com/peaceiris/actions-mdbook/commit/0773964f8c345c35718fb9920743fc27193192ad)), closes [#187](https://github.com/peaceiris/actions-mdbook/issues/187) * bump jest-circus from 25.5.1 to 25.5.2 (#189) ([0f1aa05](https://github.com/peaceiris/actions-mdbook/commit/0f1aa05dc5a4ddd7ea36af12750fde9bc8b14ba6)), closes [#189](https://github.com/peaceiris/actions-mdbook/issues/189) * bump jest-circus from 25.5.2 to 25.5.3 (#193) ([c885f11](https://github.com/peaceiris/actions-mdbook/commit/c885f113a42d948ac0488aa2f02e4fe96183a02f)), closes [#193](https://github.com/peaceiris/actions-mdbook/issues/193) * bump jest-circus from 25.5.3 to 25.5.4 (#196) ([bd41dfc](https://github.com/peaceiris/actions-mdbook/commit/bd41dfce1563718be131a6313e6600528227e4d2)), closes [#196](https://github.com/peaceiris/actions-mdbook/issues/196) * bump jest-circus from 25.5.4 to 26.0.0 (#200) ([b1d7ad6](https://github.com/peaceiris/actions-mdbook/commit/b1d7ad69644fa154a100fac4adb018ac43bdb57b)), closes [#200](https://github.com/peaceiris/actions-mdbook/issues/200) * bump jest-circus from 26.0.0 to 26.0.1 (#201) ([0d29c9f](https://github.com/peaceiris/actions-mdbook/commit/0d29c9fcf068bf2f3fdc707d44edefda6440ed0b)), closes [#201](https://github.com/peaceiris/actions-mdbook/issues/201) * bump lint-staged from 10.2.0 to 10.2.1 (#191) ([129cc74](https://github.com/peaceiris/actions-mdbook/commit/129cc743c60a7dd899c2f5a145cd23ece2b6e631)), closes [#191](https://github.com/peaceiris/actions-mdbook/issues/191) * bump lint-staged from 10.2.1 to 10.2.2 (#195) ([e8a5c8e](https://github.com/peaceiris/actions-mdbook/commit/e8a5c8e33573a917fcf9c9114befee69be0d8618)), closes [#195](https://github.com/peaceiris/actions-mdbook/issues/195) * bump lint-staged from 10.2.10 to 10.2.11 (#242) ([af3c890](https://github.com/peaceiris/actions-mdbook/commit/af3c890862a073459a477ea0dcc73a4f52d80755)), closes [#242](https://github.com/peaceiris/actions-mdbook/issues/242) * bump lint-staged from 10.2.2 to 10.2.4 (#213) ([a0b8a7f](https://github.com/peaceiris/actions-mdbook/commit/a0b8a7f8410c9e818cdc17c8741be08f510298ee)), closes [#213](https://github.com/peaceiris/actions-mdbook/issues/213) * bump lint-staged from 10.2.4 to 10.2.6 (#223) ([dccf659](https://github.com/peaceiris/actions-mdbook/commit/dccf65996cb74c00176ffda1f6b4d492ddd500f9)), closes [#223](https://github.com/peaceiris/actions-mdbook/issues/223) * bump lint-staged from 10.2.6 to 10.2.7 (#229) ([38f1300](https://github.com/peaceiris/actions-mdbook/commit/38f1300947419ef92a05a55c81e7e8046a333efa)), closes [#229](https://github.com/peaceiris/actions-mdbook/issues/229) * bump lint-staged from 10.2.7 to 10.2.8 (#233) ([ddb4bcd](https://github.com/peaceiris/actions-mdbook/commit/ddb4bcd9151b95a2ff86bb1b3f89f143b59a7431)), closes [#233](https://github.com/peaceiris/actions-mdbook/issues/233) * bump lint-staged from 10.2.8 to 10.2.9 (#234) ([a3a3dbb](https://github.com/peaceiris/actions-mdbook/commit/a3a3dbb6eb364267c4d905647d6c913e2148e9d0)), closes [#234](https://github.com/peaceiris/actions-mdbook/issues/234) * bump lint-staged from 10.2.9 to 10.2.10 (#240) ([a446c7c](https://github.com/peaceiris/actions-mdbook/commit/a446c7cf11e5741101a47b1398f9effdebd18ad0)), closes [#240](https://github.com/peaceiris/actions-mdbook/issues/240) * bump node from 12.16.1 to 12.16.3 (#186) ([b23748c](https://github.com/peaceiris/actions-mdbook/commit/b23748cced6b9934d903fbea9c5cabc1480c1752)), closes [#186](https://github.com/peaceiris/actions-mdbook/issues/186) * bump node from 12.16.3 to 12.18.1 (#243) ([7f04550](https://github.com/peaceiris/actions-mdbook/commit/7f045507b7ca7e196349bef0ec7e5d3cddccb6bf)), closes [#243](https://github.com/peaceiris/actions-mdbook/issues/243) * bump standard-version from 7.1.0 to 8.0.0 (#204) ([16c8ebf](https://github.com/peaceiris/actions-mdbook/commit/16c8ebfb358b94f089a714b07cfaad8b2edc70cd)), closes [#204](https://github.com/peaceiris/actions-mdbook/issues/204) * bump ts-jest from 25.4.0 to 25.5.0 (#203) ([ff52f12](https://github.com/peaceiris/actions-mdbook/commit/ff52f12b4bdd7bdff0174fd48e19ef495c47889e)), closes [#203](https://github.com/peaceiris/actions-mdbook/issues/203) * bump ts-jest from 25.5.0 to 25.5.1 (#205) ([7a3f883](https://github.com/peaceiris/actions-mdbook/commit/7a3f883eeab244950161f7ad65281262ba93f5ee)), closes [#205](https://github.com/peaceiris/actions-mdbook/issues/205) * bump typescript from 3.8.3 to 3.9.2 (#207) ([5fca106](https://github.com/peaceiris/actions-mdbook/commit/5fca1062cf54984431a143759d673d39dc1d7188)), closes [#207](https://github.com/peaceiris/actions-mdbook/issues/207) * bump typescript from 3.9.2 to 3.9.3 (#220) ([1921249](https://github.com/peaceiris/actions-mdbook/commit/192124926b8339d6cfff45b5813e8dce019aa4e0)), closes [#220](https://github.com/peaceiris/actions-mdbook/issues/220) * bump typescript from 3.9.3 to 3.9.5 (#235) ([173eddf](https://github.com/peaceiris/actions-mdbook/commit/173eddfca0cc95ae9f411429140eb145d78fdcfd)), closes [#235](https://github.com/peaceiris/actions-mdbook/issues/235) ### docs * remove Dependabot status badge ([ec9f92e](https://github.com/peaceiris/actions-mdbook/commit/ec9f92ee5f621bc2c05459c67e24e1e6910d4201)) ### fix * Wrap entrypoint by async to handle exceptions correctly (#246) ([0d19991](https://github.com/peaceiris/actions-mdbook/commit/0d19991235fbfcc105f6bd13673665bce06005de)), closes [#246](https://github.com/peaceiris/actions-mdbook/issues/246) ## [1.1.11](https://github.com/peaceiris/actions-mdbook/compare/v1.1.10...v1.1.11) (2020-04-29) ### ci * delete stale workflow ([3883fcd](https://github.com/peaceiris/actions-mdbook/commit/3883fcdc55e9e440145f90ed81c841a8854b39ce)) ### deps * bump @actions/tool-cache from 1.3.3 to 1.3.4 (#183) ([5a02e96](https://github.com/peaceiris/actions-mdbook/commit/5a02e963410bd6e41542b84d50ac24a7ad874547)), closes [#183](https://github.com/peaceiris/actions-mdbook/issues/183) * bump @types/node from 12.12.35 to 12.12.36 (#172) ([0e6c46e](https://github.com/peaceiris/actions-mdbook/commit/0e6c46e2b6640bc4bc8c14372dfc247005e2820a)), closes [#172](https://github.com/peaceiris/actions-mdbook/issues/172) * bump @types/node from 12.12.36 to 12.12.37 (#184) ([a9f2f02](https://github.com/peaceiris/actions-mdbook/commit/a9f2f021e36d7d975b7f4ab951ce8471e1948a8b)), closes [#184](https://github.com/peaceiris/actions-mdbook/issues/184) * bump @types/node-fetch from 2.5.6 to 2.5.7 (#182) ([24d077a](https://github.com/peaceiris/actions-mdbook/commit/24d077adf4727a324da7495ed680eee0535b4a12)), closes [#182](https://github.com/peaceiris/actions-mdbook/issues/182) * bump @typescript-eslint/parser from 2.28.0 to 2.30.0 (#180) ([b423734](https://github.com/peaceiris/actions-mdbook/commit/b4237344efe6fbecfbb533f64d8641929cd10769)), closes [#180](https://github.com/peaceiris/actions-mdbook/issues/180) * bump jest from 25.3.0 to 25.5.0 (#178) ([c6b1f9c](https://github.com/peaceiris/actions-mdbook/commit/c6b1f9cdf750fa3b82a0befe1a8ccb4052491b4d)), closes [#178](https://github.com/peaceiris/actions-mdbook/issues/178) * bump jest-circus from 25.3.0 to 25.5.0 (#177) ([43b3bbe](https://github.com/peaceiris/actions-mdbook/commit/43b3bbe5dc62040b5c7fde9e686e255078e2f687)), closes [#177](https://github.com/peaceiris/actions-mdbook/issues/177) * bump lint-staged from 10.1.3 to 10.1.4 (#171) ([745df2c](https://github.com/peaceiris/actions-mdbook/commit/745df2ca7ee860d3d0ede4ab34d6365b6f370ac8)), closes [#171](https://github.com/peaceiris/actions-mdbook/issues/171) * bump lint-staged from 10.1.4 to 10.1.5 (#173) ([7ce081d](https://github.com/peaceiris/actions-mdbook/commit/7ce081dc7dde593d5e75b43ba64e77d80a20b1ae)), closes [#173](https://github.com/peaceiris/actions-mdbook/issues/173) * bump lint-staged from 10.1.5 to 10.1.6 (#174) ([34b999b](https://github.com/peaceiris/actions-mdbook/commit/34b999bfcfc5c327e5053bd965e0c1ab5396afc5)), closes [#174](https://github.com/peaceiris/actions-mdbook/issues/174) * bump lint-staged from 10.1.6 to 10.2.0 (#181) ([042bcd7](https://github.com/peaceiris/actions-mdbook/commit/042bcd7c86717185baf312eafe9c39a0c2bdddee)), closes [#181](https://github.com/peaceiris/actions-mdbook/issues/181) * bump prettier from 2.0.4 to 2.0.5 (#179) ([a1fbafa](https://github.com/peaceiris/actions-mdbook/commit/a1fbafa012e3781b8caf1849b3816a5d0943c702)), closes [#179](https://github.com/peaceiris/actions-mdbook/issues/179) * bump ts-jest from 25.3.1 to 25.4.0 (#170) ([3242bb0](https://github.com/peaceiris/actions-mdbook/commit/3242bb028a69df0f6e250cb61302a87ee04b70fd)), closes [#170](https://github.com/peaceiris/actions-mdbook/issues/170) ### docs * Add link to the important operation ([a0c8a21](https://github.com/peaceiris/actions-mdbook/commit/a0c8a21c48a716d4386f55c12a68cb01bb027c71)) ## [1.1.10](https://github.com/peaceiris/actions-mdbook/compare/v1.1.9...v1.1.10) (2020-04-15) ### ci * Add automerged_updates [skip ci] ([06c51f4](https://github.com/peaceiris/actions-mdbook/commit/06c51f424f9615459fa5bc2271107c90c5e8fc24)) * delete CODEOWNERS [skip ci] ([eeebc81](https://github.com/peaceiris/actions-mdbook/commit/eeebc81df5c6513a1f80ec976224639b7be88ee3)) ### deps * bump @types/jest from 25.1.5 to 25.2.1 (#156) ([60c90ba](https://github.com/peaceiris/actions-mdbook/commit/60c90ba58da5d3b8c264f3845cf7799760a48e71)), closes [#156](https://github.com/peaceiris/actions-mdbook/issues/156) * bump @types/node from 12.12.34 to 12.12.35 (#163) ([dc2b7f1](https://github.com/peaceiris/actions-mdbook/commit/dc2b7f173b7cb64e1822b582f3fb35e34deb5228)), closes [#163](https://github.com/peaceiris/actions-mdbook/issues/163) * bump @types/node-fetch from 2.5.5 to 2.5.6 (#168) ([68bb16a](https://github.com/peaceiris/actions-mdbook/commit/68bb16a6cd1014912fc96e842e8083afddb37e0f)), closes [#168](https://github.com/peaceiris/actions-mdbook/issues/168) * bump @typescript-eslint/parser from 2.26.0 to 2.27.0 (#161) ([1f62023](https://github.com/peaceiris/actions-mdbook/commit/1f62023e99206e8b821892e76e279361d6a6d296)), closes [#161](https://github.com/peaceiris/actions-mdbook/issues/161) * bump @typescript-eslint/parser from 2.27.0 to 2.28.0 (#169) ([fd22fbf](https://github.com/peaceiris/actions-mdbook/commit/fd22fbf3d23664068c426e7ac8d5cd7d92a616b2)), closes [#169](https://github.com/peaceiris/actions-mdbook/issues/169) * bump @zeit/ncc from 0.22.0 to 0.22.1 (#158) ([c7c43e4](https://github.com/peaceiris/actions-mdbook/commit/c7c43e43f42de36cd87a6d11decaff213038134d)), closes [#158](https://github.com/peaceiris/actions-mdbook/issues/158) * bump husky from 4.2.3 to 4.2.4 (#166) ([fad4e8c](https://github.com/peaceiris/actions-mdbook/commit/fad4e8cf4874a09ecee431bb618cd10beeca4190)), closes [#166](https://github.com/peaceiris/actions-mdbook/issues/166) * bump husky from 4.2.4 to 4.2.5 (#167) ([b062f77](https://github.com/peaceiris/actions-mdbook/commit/b062f772e150c797dc814dd35264b5f6a77b6e02)), closes [#167](https://github.com/peaceiris/actions-mdbook/issues/167) * bump jest from 25.2.7 to 25.3.0 (#162) ([6ddadd3](https://github.com/peaceiris/actions-mdbook/commit/6ddadd37b840ad017dd6535bba2e9cbd9a49ef8c)), closes [#162](https://github.com/peaceiris/actions-mdbook/issues/162) * bump jest-circus from 25.2.7 to 25.3.0 (#164) ([e85d2f8](https://github.com/peaceiris/actions-mdbook/commit/e85d2f8a6061e0ba40a3b63cb3eac054eace245e)), closes [#164](https://github.com/peaceiris/actions-mdbook/issues/164) * bump lint-staged from 10.1.1 to 10.1.2 (#157) ([841b02a](https://github.com/peaceiris/actions-mdbook/commit/841b02a134a19c8533f46cb9ef10ca61e18da2dc)), closes [#157](https://github.com/peaceiris/actions-mdbook/issues/157) * bump lint-staged from 10.1.2 to 10.1.3 (#165) ([e73c009](https://github.com/peaceiris/actions-mdbook/commit/e73c009cb26f3e6bf2a9d8a9d1a18b72ea18da2f)), closes [#165](https://github.com/peaceiris/actions-mdbook/issues/165) * bump prettier from 2.0.2 to 2.0.4 (#160) ([5fb889e](https://github.com/peaceiris/actions-mdbook/commit/5fb889e027b80bd05f59d8acae903c90f9536c9a)), closes [#160](https://github.com/peaceiris/actions-mdbook/issues/160) ### docs * bump mdbook to 0.3.7 ([fd53d5c](https://github.com/peaceiris/actions-mdbook/commit/fd53d5c0166cb472b9de9f8dd9ff4f625544f52c)) ## [1.1.9](https://github.com/peaceiris/actions-mdbook/compare/v1.1.8...v1.1.9) (2020-04-03) ### ci * npm audit fix ([1a968a3](https://github.com/peaceiris/actions-mdbook/commit/1a968a315dcf9011bbe8f7a9c1faadbb983171f5)) * set update_schedule live ([0ffe1b8](https://github.com/peaceiris/actions-mdbook/commit/0ffe1b8dba946ade314f1e0759925a7d4cf6ed50)) ### deps * bump @types/jest from 25.1.4 to 25.1.5 (#151) ([ac0f49f](https://github.com/peaceiris/actions-mdbook/commit/ac0f49fa7a6f74ed5c6c6c89a30ea94bf52b5dc5)), closes [#151](https://github.com/peaceiris/actions-mdbook/issues/151) * bump @types/node from 12.12.30 to 12.12.31 (#129) ([1a035ec](https://github.com/peaceiris/actions-mdbook/commit/1a035ec01ef4007b50fc64a0afdfa7f20dcdb376)), closes [#129](https://github.com/peaceiris/actions-mdbook/issues/129) * bump @types/node from 12.12.31 to 12.12.32 (#138) ([df32eff](https://github.com/peaceiris/actions-mdbook/commit/df32effc5c545c0cc32c9119828eebdeeccc94e7)), closes [#138](https://github.com/peaceiris/actions-mdbook/issues/138) * bump @types/node from 12.12.32 to 12.12.34 (#147) ([8dd8d1a](https://github.com/peaceiris/actions-mdbook/commit/8dd8d1a22fcbc4a4d01fa11f44b2fe59b77dd4fa)), closes [#147](https://github.com/peaceiris/actions-mdbook/issues/147) * bump @typescript-eslint/parser from 2.23.0 to 2.24.0 (#121) ([5098ac9](https://github.com/peaceiris/actions-mdbook/commit/5098ac947db209d078bf87e64cc82b702e0badd9)), closes [#121](https://github.com/peaceiris/actions-mdbook/issues/121) * bump @typescript-eslint/parser from 2.24.0 to 2.25.0 (#125) ([2360152](https://github.com/peaceiris/actions-mdbook/commit/23601520384e1583fdd80e27d0dce38626ddd8e4)), closes [#125](https://github.com/peaceiris/actions-mdbook/issues/125) * bump @typescript-eslint/parser from 2.25.0 to 2.26.0 (#145) ([2ff24ec](https://github.com/peaceiris/actions-mdbook/commit/2ff24ec4e8eb8a5e368ac676b5781fbbcf1937cc)), closes [#145](https://github.com/peaceiris/actions-mdbook/issues/145) * bump @zeit/ncc from 0.21.1 to 0.22.0 (#126) ([34e7974](https://github.com/peaceiris/actions-mdbook/commit/34e7974156c2128acdd793e394d3d8470941b644)), closes [#126](https://github.com/peaceiris/actions-mdbook/issues/126) * bump jest from 25.1.0 to 25.2.0 (#131) ([eec3744](https://github.com/peaceiris/actions-mdbook/commit/eec3744d3f9e460db214a7f8d4b9819522b7e9c7)), closes [#131](https://github.com/peaceiris/actions-mdbook/issues/131) * bump jest from 25.2.0 to 25.2.1 (#133) ([7f87b65](https://github.com/peaceiris/actions-mdbook/commit/7f87b65d821a83809dfbbe8df65b58d5f3fe0ec4)), closes [#133](https://github.com/peaceiris/actions-mdbook/issues/133) * bump jest from 25.2.1 to 25.2.2 (#135) ([0a628f9](https://github.com/peaceiris/actions-mdbook/commit/0a628f92adb3d11ee2a054737b960562b2e06b8a)), closes [#135](https://github.com/peaceiris/actions-mdbook/issues/135) * bump jest from 25.2.2 to 25.2.3 (#137) ([5f87e1a](https://github.com/peaceiris/actions-mdbook/commit/5f87e1a2b97c6d0ca2429bcbb6b99c8bfeea4099)), closes [#137](https://github.com/peaceiris/actions-mdbook/issues/137) * bump jest from 25.2.3 to 25.2.4 (#142) ([41defb3](https://github.com/peaceiris/actions-mdbook/commit/41defb3042202af6537e94fe341f85b82b83bdc0)), closes [#142](https://github.com/peaceiris/actions-mdbook/issues/142) * bump jest from 25.2.4 to 25.2.6 (#150) ([7485f53](https://github.com/peaceiris/actions-mdbook/commit/7485f5351df536b09b49fc559c6b0fe8e009ffa7)), closes [#150](https://github.com/peaceiris/actions-mdbook/issues/150) * bump jest from 25.2.6 to 25.2.7 (#152) ([6c818d9](https://github.com/peaceiris/actions-mdbook/commit/6c818d9ac787685ceb94740a57e3b1410e23f797)), closes [#152](https://github.com/peaceiris/actions-mdbook/issues/152) * bump jest-circus from 25.1.0 to 25.2.0 (#130) ([5972de8](https://github.com/peaceiris/actions-mdbook/commit/5972de85ca33795a4346a8059b0bc36e51fd02ff)), closes [#130](https://github.com/peaceiris/actions-mdbook/issues/130) * bump jest-circus from 25.2.0 to 25.2.1 (#132) ([6055a5b](https://github.com/peaceiris/actions-mdbook/commit/6055a5bbf4861aa1f95c22a58cbeb7a10e7583d5)), closes [#132](https://github.com/peaceiris/actions-mdbook/issues/132) * bump jest-circus from 25.2.1 to 25.2.2 (#134) ([b11d43e](https://github.com/peaceiris/actions-mdbook/commit/b11d43e8dd825be089bc8a5a8291daece55bba27)), closes [#134](https://github.com/peaceiris/actions-mdbook/issues/134) * bump jest-circus from 25.2.2 to 25.2.3 (#136) ([e69007e](https://github.com/peaceiris/actions-mdbook/commit/e69007e81cac8d488d91f8a353aafebaaccf19e8)), closes [#136](https://github.com/peaceiris/actions-mdbook/issues/136) * bump jest-circus from 25.2.3 to 25.2.4 (#141) ([1fea3b4](https://github.com/peaceiris/actions-mdbook/commit/1fea3b4fa3bdf17c91a946389eddf8bf985dde75)), closes [#141](https://github.com/peaceiris/actions-mdbook/issues/141) * bump jest-circus from 25.2.4 to 25.2.6 (#149) ([afc2b2e](https://github.com/peaceiris/actions-mdbook/commit/afc2b2e4c6d2874c994541c0cfcf59cf59b7f3ea)), closes [#149](https://github.com/peaceiris/actions-mdbook/issues/149) * bump jest-circus from 25.2.6 to 25.2.7 (#153) ([3511bed](https://github.com/peaceiris/actions-mdbook/commit/3511bedc56f288db5298952f0407e00c37c04d26)), closes [#153](https://github.com/peaceiris/actions-mdbook/issues/153) * bump lint-staged from 10.0.10 to 10.1.0 (#144) ([b86780e](https://github.com/peaceiris/actions-mdbook/commit/b86780ef6662f80d3a0a56fc79b1e739c212deed)), closes [#144](https://github.com/peaceiris/actions-mdbook/issues/144) * bump lint-staged from 10.0.8 to 10.0.9 (#128) ([38c6de1](https://github.com/peaceiris/actions-mdbook/commit/38c6de101f64f23e94b4875b8f519d8d8ae0e431)), closes [#128](https://github.com/peaceiris/actions-mdbook/issues/128) * bump lint-staged from 10.0.9 to 10.0.10 (#140) ([607cc7e](https://github.com/peaceiris/actions-mdbook/commit/607cc7e8e6a23650080078baca7b728455fd2bdf)), closes [#140](https://github.com/peaceiris/actions-mdbook/issues/140) * bump lint-staged from 10.1.0 to 10.1.1 (#148) ([838120b](https://github.com/peaceiris/actions-mdbook/commit/838120b683f5c0a3fbe1b9275ad8d86d51a821db)), closes [#148](https://github.com/peaceiris/actions-mdbook/issues/148) * bump nock from 12.0.2 to 12.0.3 (#122) ([724cb66](https://github.com/peaceiris/actions-mdbook/commit/724cb666e6fe6dac74b93d222e778612fb7b5780)), closes [#122](https://github.com/peaceiris/actions-mdbook/issues/122) * bump prettier from 1.19.1 to 2.0.1 (#124) ([cf502a5](https://github.com/peaceiris/actions-mdbook/commit/cf502a5bea8f2960433f963fe381875a57865644)), closes [#124](https://github.com/peaceiris/actions-mdbook/issues/124) * bump prettier from 2.0.1 to 2.0.2 (#127) ([038c928](https://github.com/peaceiris/actions-mdbook/commit/038c92892f888c5e0f6099a6583e0c2bc58f9856)), closes [#127](https://github.com/peaceiris/actions-mdbook/issues/127) * bump ts-jest from 25.2.1 to 25.3.0 (#143) ([18bab30](https://github.com/peaceiris/actions-mdbook/commit/18bab3027e5f87d26da9c814d66103275d635930)), closes [#143](https://github.com/peaceiris/actions-mdbook/issues/143) * bump ts-jest from 25.3.0 to 25.3.1 (#154) ([1f5fec7](https://github.com/peaceiris/actions-mdbook/commit/1f5fec798646f31fff05601c31721752d47a75b3)), closes [#154](https://github.com/peaceiris/actions-mdbook/issues/154) * npm audit fix ([62885bc](https://github.com/peaceiris/actions-mdbook/commit/62885bc509729d66d86c14a67329a060e31d89c2)) ### docs * Add link to interview (#139) ([b9247e1](https://github.com/peaceiris/actions-mdbook/commit/b9247e1593ac81df5d64fafef96e0e2fa0762caf)), closes [#139](https://github.com/peaceiris/actions-mdbook/issues/139) ## [1.1.8](https://github.com/peaceiris/actions-mdbook/compare/v1.1.7...v1.1.8) (2020-03-13) ### ci * update script link [skip ci] ([2abb5f3](https://github.com/peaceiris/actions-mdbook/commit/2abb5f3831b99f4374ea9580d721be9ca075e484)) ### deps * [security] bump acorn from 6.4.0 to 6.4.1 (#120) ([ae954ca](https://github.com/peaceiris/actions-mdbook/commit/ae954ca88b9934c8d1ff7f13c5a26afc829c2dd6)), closes [#120](https://github.com/peaceiris/actions-mdbook/issues/120) * bump @actions/core from 1.2.2 to 1.2.3 (#113) ([de6aa96](https://github.com/peaceiris/actions-mdbook/commit/de6aa96547f4a80d6012558512b0f437f6674f08)), closes [#113](https://github.com/peaceiris/actions-mdbook/issues/113) * bump @actions/tool-cache from 1.3.1 to 1.3.3 (#118) ([c3dc9d4](https://github.com/peaceiris/actions-mdbook/commit/c3dc9d4e40f824d5e0d4c1edd70555c0a8149fcf)), closes [#118](https://github.com/peaceiris/actions-mdbook/issues/118) * bump @types/jest from 25.1.3 to 25.1.4 (#115) ([798465a](https://github.com/peaceiris/actions-mdbook/commit/798465a83fb6b8c98d5bb225a2057cc1888e2d60)), closes [#115](https://github.com/peaceiris/actions-mdbook/issues/115) * bump @types/node from 12.12.28 to 12.12.29 (#110) ([ef85128](https://github.com/peaceiris/actions-mdbook/commit/ef85128ba4bb3e3cc9a1484932d8437eab6bc271)), closes [#110](https://github.com/peaceiris/actions-mdbook/issues/110) * bump @types/node from 12.12.29 to 12.12.30 (#119) ([847a979](https://github.com/peaceiris/actions-mdbook/commit/847a97974a751c856cb776550f689a965cbbf0c2)), closes [#119](https://github.com/peaceiris/actions-mdbook/issues/119) * bump @typescript-eslint/parser from 2.21.0 to 2.22.0 (#112) ([0f755ee](https://github.com/peaceiris/actions-mdbook/commit/0f755ee985ab76482fd2db5f8caa6bea93d9efe8)), closes [#112](https://github.com/peaceiris/actions-mdbook/issues/112) * bump @typescript-eslint/parser from 2.22.0 to 2.23.0 (#117) ([e2f07ed](https://github.com/peaceiris/actions-mdbook/commit/e2f07ed57b0037811c8ecbe8b551ba5e23ac0da2)), closes [#117](https://github.com/peaceiris/actions-mdbook/issues/117) * bump hub 2.14.1 to 2.14.2 ([c28a21d](https://github.com/peaceiris/actions-mdbook/commit/c28a21d602199e74cd984f75238c4d1a644155dd)) * bump nock from 12.0.1 to 12.0.2 (#109) ([a2da2af](https://github.com/peaceiris/actions-mdbook/commit/a2da2af2dcca724c6d39519322df48f8eb2c15c3)), closes [#109](https://github.com/peaceiris/actions-mdbook/issues/109) * bump node 12.15.0 to 12.16.1 (#116) ([92a7c89](https://github.com/peaceiris/actions-mdbook/commit/92a7c89ff746068c3989017248a0e3d1b91c548f)), closes [#116](https://github.com/peaceiris/actions-mdbook/issues/116) * bump typescript from 3.8.2 to 3.8.3 (#111) ([2730552](https://github.com/peaceiris/actions-mdbook/commit/27305526dc64e869466bf7ea86c583ff2bdec87f)), closes [#111](https://github.com/peaceiris/actions-mdbook/issues/111) ## [1.1.7](https://github.com/peaceiris/actions-mdbook/compare/v1.1.6...v1.1.7) (2020-02-26) ### deps * bump @types/jest from 25.1.1 to 25.1.2 (#88) ([5674a0a](https://github.com/peaceiris/actions-mdbook/commit/5674a0a8828d0c73ef891fc658250293b0994303)), closes [#88](https://github.com/peaceiris/actions-mdbook/issues/88) * bump @types/jest from 25.1.2 to 25.1.3 (#101) ([e86c931](https://github.com/peaceiris/actions-mdbook/commit/e86c931198450e648101e057cf6b84c6d0b21484)), closes [#101](https://github.com/peaceiris/actions-mdbook/issues/101) * bump @types/node from 12.12.27 to 12.12.28 (#105) ([00b5872](https://github.com/peaceiris/actions-mdbook/commit/00b5872427f13ae6b223cc6d68b5e12c4ea0e0e6)), closes [#105](https://github.com/peaceiris/actions-mdbook/issues/105) * bump @types/node from 13.7.0 to 13.7.1 (#92) ([8d74eb9](https://github.com/peaceiris/actions-mdbook/commit/8d74eb9cbd142fcf020969fa59afaa24e7e91bef)), closes [#92](https://github.com/peaceiris/actions-mdbook/issues/92) * bump @types/node from 13.7.1 to 13.7.2 (#98) ([5aeb39e](https://github.com/peaceiris/actions-mdbook/commit/5aeb39ee1744a293859e708a5b4b5bbdb3fd1de7)), closes [#98](https://github.com/peaceiris/actions-mdbook/issues/98) * bump @types/node-fetch from 2.5.4 to 2.5.5 (#106) ([0486d84](https://github.com/peaceiris/actions-mdbook/commit/0486d84f1b1ef460cdccad995cd47ef915036892)), closes [#106](https://github.com/peaceiris/actions-mdbook/issues/106) * bump @typescript-eslint/parser from 2.19.0 to 2.19.2 (#91) ([54c624a](https://github.com/peaceiris/actions-mdbook/commit/54c624a5ff1af52ef52912563a88a2ae6bbea4d9)), closes [#91](https://github.com/peaceiris/actions-mdbook/issues/91) * bump @typescript-eslint/parser from 2.19.2 to 2.20.0 (#97) ([45c7ad3](https://github.com/peaceiris/actions-mdbook/commit/45c7ad34bdcd72e47eed6dacd4bcdf3679f6783c)), closes [#97](https://github.com/peaceiris/actions-mdbook/issues/97) * bump @typescript-eslint/parser from 2.20.0 to 2.21.0 (#107) ([70034a6](https://github.com/peaceiris/actions-mdbook/commit/70034a66d2d4690b6f90b5a4d332877ac40d16ea)), closes [#107](https://github.com/peaceiris/actions-mdbook/issues/107) * bump @zeit/ncc from 0.21.0 to 0.21.1 (#94) ([55b53b6](https://github.com/peaceiris/actions-mdbook/commit/55b53b68e87015de3048e54c6e40cefe489c4fc7)), closes [#94](https://github.com/peaceiris/actions-mdbook/issues/94) * bump husky from 4.2.1 to 4.2.3 (#93) ([d80c810](https://github.com/peaceiris/actions-mdbook/commit/d80c810871ecb95309df8b128b852b1c114a6531)), closes [#93](https://github.com/peaceiris/actions-mdbook/issues/93) * bump lint-staged from 10.0.7 to 10.0.8 (#108) ([c328ee0](https://github.com/peaceiris/actions-mdbook/commit/c328ee09e1e363f8817df28bdd315ea292d7b795)), closes [#108](https://github.com/peaceiris/actions-mdbook/issues/108) * bump nock from 11.7.2 to 11.8.2 (#90) ([70fabbb](https://github.com/peaceiris/actions-mdbook/commit/70fabbbb30aa477198057af92f52420d44f7a77d)), closes [#90](https://github.com/peaceiris/actions-mdbook/issues/90) * bump nock from 11.8.2 to 12.0.0 (#96) ([99564bc](https://github.com/peaceiris/actions-mdbook/commit/99564bce89b8e0b316d651d8bbd001fc3e9046d4)), closes [#96](https://github.com/peaceiris/actions-mdbook/issues/96) * bump nock from 12.0.0 to 12.0.1 (#102) ([039e187](https://github.com/peaceiris/actions-mdbook/commit/039e1879302e0f1aee9ce927d4808a84726ee78c)), closes [#102](https://github.com/peaceiris/actions-mdbook/issues/102) * bump node from 12.14.1 to 12.15.0 (#89) ([5fcd996](https://github.com/peaceiris/actions-mdbook/commit/5fcd996c51861b895bd1195dd3204b0d68dc0483)), closes [#89](https://github.com/peaceiris/actions-mdbook/issues/89) * bump ts-jest from 25.2.0 to 25.2.1 (#103) ([992f396](https://github.com/peaceiris/actions-mdbook/commit/992f3965089e9ba12d678d246a4af762dc01bbbe)), closes [#103](https://github.com/peaceiris/actions-mdbook/issues/103) * bump typescript from 3.7.5 to 3.8.2 (#104) ([84cceb5](https://github.com/peaceiris/actions-mdbook/commit/84cceb5c191721797f7d4fe3cf78d231af81a2d2)), closes [#104](https://github.com/peaceiris/actions-mdbook/issues/104) * Rollback types/node 13 to 12 (#99) ([6c61e98](https://github.com/peaceiris/actions-mdbook/commit/6c61e982523308572a8fd3cbabe688bf74d8be3f)), closes [#99](https://github.com/peaceiris/actions-mdbook/issues/99) ### docs * update ([e888f4f](https://github.com/peaceiris/actions-mdbook/commit/e888f4f575fb533b2533135192090d0fc1d6547b)) * use github_token ([72cd0b3](https://github.com/peaceiris/actions-mdbook/commit/72cd0b314dffd02e6f3e5bc9d201c0419efaaa98)) * use peaceiris/actions-gh-pages@v3 ([208d73e](https://github.com/peaceiris/actions-mdbook/commit/208d73ee88c513db72ad6f4133e80986170377d8)) ## [1.1.6](https://github.com/peaceiris/actions-mdbook/compare/v1.1.5...v1.1.6) (2020-02-04) ### deps * bump @types/jest from 25.1.0 to 25.1.1 (#79) ([29e309f](https://github.com/peaceiris/actions-mdbook/commit/29e309f98f8f62c078e94fc69ab95ce717c60774)), closes [#79](https://github.com/peaceiris/actions-mdbook/issues/79) * bump @types/node from 13.5.0 to 13.5.1 (#76) ([f9d6df4](https://github.com/peaceiris/actions-mdbook/commit/f9d6df40456810cb1f55182d915b9a062e7ecdfc)), closes [#76](https://github.com/peaceiris/actions-mdbook/issues/76) * bump @types/node from 13.5.1 to 13.5.2 (#78) ([27e10c3](https://github.com/peaceiris/actions-mdbook/commit/27e10c3b635aa8a8927b7c350ff6b73d51ea0e17)), closes [#78](https://github.com/peaceiris/actions-mdbook/issues/78) * bump @types/node from 13.5.2 to 13.5.3 (#83) ([eb7f987](https://github.com/peaceiris/actions-mdbook/commit/eb7f987d573a121ba7bbe4774380fc7349072082)), closes [#83](https://github.com/peaceiris/actions-mdbook/issues/83) * bump @types/node from 13.5.3 to 13.7.0 (#85) ([a93ff27](https://github.com/peaceiris/actions-mdbook/commit/a93ff272a8c32be93486cd139aaf0b9fa76baa77)), closes [#85](https://github.com/peaceiris/actions-mdbook/issues/85) * bump @typescript-eslint/parser from 2.18.0 to 2.19.0 (#86) ([acc4776](https://github.com/peaceiris/actions-mdbook/commit/acc47767fc0ad78dde6941d59055b1e16289f176)), closes [#86](https://github.com/peaceiris/actions-mdbook/issues/86) * bump lint-staged from 10.0.3 to 10.0.4 (#77) ([2b7e097](https://github.com/peaceiris/actions-mdbook/commit/2b7e09706ea957519ce1e30f08cbc8e5c4d87c54)), closes [#77](https://github.com/peaceiris/actions-mdbook/issues/77) * bump lint-staged from 10.0.4 to 10.0.5 (#80) ([a9409d8](https://github.com/peaceiris/actions-mdbook/commit/a9409d8496d348ae50840b40adbb151f5277c07f)), closes [#80](https://github.com/peaceiris/actions-mdbook/issues/80) * bump lint-staged from 10.0.5 to 10.0.6 (#81) ([9569263](https://github.com/peaceiris/actions-mdbook/commit/9569263894953d86b53cbb13e0468e1ebd4b4842)), closes [#81](https://github.com/peaceiris/actions-mdbook/issues/81) * bump lint-staged from 10.0.6 to 10.0.7 (#84) ([e4822d2](https://github.com/peaceiris/actions-mdbook/commit/e4822d24eda99c0f83ad541eb387acd906552eba)), closes [#84](https://github.com/peaceiris/actions-mdbook/issues/84) * bump ts-jest from 25.0.0 to 25.1.0 (#82) ([c4269af](https://github.com/peaceiris/actions-mdbook/commit/c4269af7d467960f862442596c03f8fa402507a6)), closes [#82](https://github.com/peaceiris/actions-mdbook/issues/82) * bump ts-jest from 25.1.0 to 25.2.0 (#87) ([3ad65c8](https://github.com/peaceiris/actions-mdbook/commit/3ad65c8dc7d75f86d8b8134a9f585f3d53f26b28)), closes [#87](https://github.com/peaceiris/actions-mdbook/issues/87) ### docs * add Dependabot badge ([1d1b671](https://github.com/peaceiris/actions-mdbook/commit/1d1b6717bd96f3e3eb0561496b2fe251bb56e2b6)) ## [1.1.5](https://github.com/peaceiris/actions-mdbook/compare/v1.1.4...v1.1.5) (2020-01-28) ### chore * fix path to .gitconfig [skip ci] ([ae12f3f](https://github.com/peaceiris/actions-mdbook/commit/ae12f3f6d49001f17e4e99f19e51ee477267b15b)) * ignore failure ([71204e7](https://github.com/peaceiris/actions-mdbook/commit/71204e7c9ef72c2e1b68398a0ac37a19b05889c7)) ### ci * use github/hub install script ([a1f10a9](https://github.com/peaceiris/actions-mdbook/commit/a1f10a9756658f75b05010b0836c384e507a549f)) ### deps * bump @types/jest from 24.9.1 to 25.1.0 (#73) ([b3a3436](https://github.com/peaceiris/actions-mdbook/commit/b3a343619edc1738dee9c61708165b0886a74061)), closes [#73](https://github.com/peaceiris/actions-mdbook/issues/73) * bump @typescript-eslint/parser from 2.17.0 to 2.18.0 (#72) ([00ac6b1](https://github.com/peaceiris/actions-mdbook/commit/00ac6b1c05583639a59afcbb14195bc971fa6979)), closes [#72](https://github.com/peaceiris/actions-mdbook/issues/72) * bump lint-staged from 10.0.2 to 10.0.3 (#74) ([dbf994b](https://github.com/peaceiris/actions-mdbook/commit/dbf994b066ca888e4b925b7a790a6ff6533df810)), closes [#74](https://github.com/peaceiris/actions-mdbook/issues/74) ### docs * add release feed badge ([353aa9f](https://github.com/peaceiris/actions-mdbook/commit/353aa9fe3f9cac8f1d9433fb976a916b16b59a58)) * update badge ([b8df9e8](https://github.com/peaceiris/actions-mdbook/commit/b8df9e80441c8cee40bfb3f29e564a515605b7e5)) ## [1.1.4](https://github.com/peaceiris/actions-mdbook/compare/v1.1.3...v1.1.4) (2020-01-24) ### chore * Change update_schedule from weekly to daily ([0a3af4f](https://github.com/peaceiris/actions-mdbook/commit/0a3af4fdb8289762e2ac86fc4ca5bb875fdd1725)) ### deps * bump @actions/core from 1.2.1 to 1.2.2 (#66) ([e5043db](https://github.com/peaceiris/actions-mdbook/commit/e5043db54b0c55c91f14ad7cee1aa466c537e26a)), closes [#66](https://github.com/peaceiris/actions-mdbook/issues/66) * bump @actions/tool-cache from 1.3.0 to 1.3.1 (#67) ([0f94675](https://github.com/peaceiris/actions-mdbook/commit/0f946751a0ec207f8eb06bdf65f90f121efda124)), closes [#67](https://github.com/peaceiris/actions-mdbook/issues/67) ## [1.1.3](https://github.com/peaceiris/actions-mdbook/compare/v1.1.2...v1.1.3) (2020-01-23) ### chore * Remove unused test data (#54) ([92a3b1e](https://github.com/peaceiris/actions-mdbook/commit/92a3b1ebef86ff34a9eb02470bb505cd19ecdc9f)), closes [#54](https://github.com/peaceiris/actions-mdbook/issues/54) ### ci * Add [skip ci] ([6c0c1ee](https://github.com/peaceiris/actions-mdbook/commit/6c0c1ee58eee71e01702f63eaa35874760bb91f9)) * Add daily action test workflow [skip ci] ([4927a0d](https://github.com/peaceiris/actions-mdbook/commit/4927a0d176c1cd357e8d7082ccd8fcfd489e4378)) * Add mdbook version dump step [skip ci] ([c71453c](https://github.com/peaceiris/actions-mdbook/commit/c71453cbb98b5967bb2b3089321cab746dcde9a7)) * Comment out push event [skip ci] ([b861b6f](https://github.com/peaceiris/actions-mdbook/commit/b861b6fc47b5eed64a8bb0b7f811c03aaeffddbe)) * Use Codecov instead of Coveralls (#57) ([9d13e62](https://github.com/peaceiris/actions-mdbook/commit/9d13e626cf52d3bc281b00a972c45b4471d19579)), closes [#57](https://github.com/peaceiris/actions-mdbook/issues/57) ### deps * bump @types/jest from 24.9.0 to 24.9.1 (#61) ([eacd24e](https://github.com/peaceiris/actions-mdbook/commit/eacd24efeba7fa2e4e995d32f38a5fcf6d10272e)), closes [#61](https://github.com/peaceiris/actions-mdbook/issues/61) * bump @types/node from 13.1.8 to 13.5.0 (#59) ([e66b8ad](https://github.com/peaceiris/actions-mdbook/commit/e66b8ad1ec5db5c9feb5336f813c6e0f0fb66d33)), closes [#59](https://github.com/peaceiris/actions-mdbook/issues/59) * bump husky from 4.0.10 to 4.2.1 (#65) ([16c535a](https://github.com/peaceiris/actions-mdbook/commit/16c535a0150f194297dcc6b5ea6fbec32db210c7)), closes [#65](https://github.com/peaceiris/actions-mdbook/issues/65) * bump jest and ts-jest (#60) ([58a9e09](https://github.com/peaceiris/actions-mdbook/commit/58a9e09408b01e0ed80838fa74e06a8a45f22ba9)), closes [#60](https://github.com/peaceiris/actions-mdbook/issues/60) * bump jest-circus from 24.9.0 to 25.1.0 (#63) ([506fb6b](https://github.com/peaceiris/actions-mdbook/commit/506fb6bb8b976e04bd0f7d4c3ef96080a5d95342)), closes [#63](https://github.com/peaceiris/actions-mdbook/issues/63) * bump lint-staged from 10.0.0 to 10.0.2 (#62) ([31e2a69](https://github.com/peaceiris/actions-mdbook/commit/31e2a69e546ee71667d782fadd899769d06596bb)), closes [#62](https://github.com/peaceiris/actions-mdbook/issues/62) * bump standard-version from 7.0.1 to 7.1.0 (#64) ([9faa86b](https://github.com/peaceiris/actions-mdbook/commit/9faa86b6764963a137ea21bc3b9aa5f0911bae77)), closes [#64](https://github.com/peaceiris/actions-mdbook/issues/64) * update ([40add43](https://github.com/peaceiris/actions-mdbook/commit/40add431431ee6f05ddde4fec157bd5d8e5bdbf2)) * update (#58) ([3502ab2](https://github.com/peaceiris/actions-mdbook/commit/3502ab28f0ecce9b379298a5309733dd032c01bf)), closes [#58](https://github.com/peaceiris/actions-mdbook/issues/58) ### docs * Add back to TOC link ([c5a0c57](https://github.com/peaceiris/actions-mdbook/commit/c5a0c571d5670eb2a69d7663e01bf3603d892ee1)) * Add Codecov badge ([8a27654](https://github.com/peaceiris/actions-mdbook/commit/8a27654a0ad8119c05d111deeb60b9c4ca90d7a5)) * Fix link text [skip ci] ([1fc0b2b](https://github.com/peaceiris/actions-mdbook/commit/1fc0b2b1aef51ee3a800ea3ca22704d458dc650b)) * Reindent [skip ci] ([6e68c1a](https://github.com/peaceiris/actions-mdbook/commit/6e68c1a9078d01b986d31225c0ad3726cf4db231)) ## [1.1.2](https://github.com/peaceiris/actions-mdbook/compare/v1.1.1...v1.1.2) (2020-01-17) ### chore * Add task to autorun npm ci [skip ci] ([79e5422](https://github.com/peaceiris/actions-mdbook/commit/79e5422a8a9e0beda98f63468ed5116e47351940)) * Fix update-deps task [skip ci] ([2190379](https://github.com/peaceiris/actions-mdbook/commit/2190379bfa49506ed8f132dc7611bd19142ebe70)) * Update LICENSE year ([f4e8897](https://github.com/peaceiris/actions-mdbook/commit/f4e8897a27ae65ef9947f1d4ebec0f8b221922d9)) ### ci * Add npm ci [skip ci] ([ff772b1](https://github.com/peaceiris/actions-mdbook/commit/ff772b1cacb7fb4b28845bae8cad0af4c77e7bd3)) * Merge code-health job to test job (#48) ([85b1691](https://github.com/peaceiris/actions-mdbook/commit/85b169143cd1a833f8b66bcd7036919e68a01d9d)), closes [#48](https://github.com/peaceiris/actions-mdbook/issues/48) ### deps * Move @types/node-fetch under devDependencies (#51) ([18758de](https://github.com/peaceiris/actions-mdbook/commit/18758de5b7184f926be984b9a58e155d1664b3a2)), closes [#51](https://github.com/peaceiris/actions-mdbook/issues/51) * update (#52) ([d44a69e](https://github.com/peaceiris/actions-mdbook/commit/d44a69ece07e7f1611afe979e62ef8ec304128a7)), closes [#52](https://github.com/peaceiris/actions-mdbook/issues/52) ### test * Add failure testing (#49) ([6693991](https://github.com/peaceiris/actions-mdbook/commit/66939910092a11f56e36a0e0a224f8048b6619fc)), closes [#49](https://github.com/peaceiris/actions-mdbook/issues/49) * Fix testing only linux (#53) ([90b51f1](https://github.com/peaceiris/actions-mdbook/commit/90b51f1ecc5bee644a9290216df12c5a595b0cb1)), closes [#53](https://github.com/peaceiris/actions-mdbook/issues/53) ## [1.1.1](https://github.com/peaceiris/actions-mdbook/compare/v1.1.0...v1.1.1) (2020-01-13) ### chore * Pin tag instead of commit hash ([91c48da](https://github.com/peaceiris/actions-mdbook/commit/91c48da3883c3fba683feb7fa1385527723b241c)) ### ci * Add [skip ci] job ([25dac88](https://github.com/peaceiris/actions-mdbook/commit/25dac8825adf5780ae117cf5677fcdb940af65f6)) * Change release notes content ([70e81e4](https://github.com/peaceiris/actions-mdbook/commit/70e81e41cbdfc2c3bc17ed683f6fb89025bf69fc)) * Enhance git stable tag management ([2d09e75](https://github.com/peaceiris/actions-mdbook/commit/2d09e753e4c5482bc64193f73e2d85c50def3605)) * Fix release_notes.md ([458dd6d](https://github.com/peaceiris/actions-mdbook/commit/458dd6d78e5a8880c05eaebe534eeb44b1180b1b)) * Pin coverallsapp/github-action to v1.0.1 (#41) ([6cc4880](https://github.com/peaceiris/actions-mdbook/commit/6cc488067d1996e3744be2196ca824aa7bae241c)), closes [#41](https://github.com/peaceiris/actions-mdbook/issues/41) ### deps * update (#38) ([6ad5947](https://github.com/peaceiris/actions-mdbook/commit/6ad5947b7270d040cd634a50e874c122c048ad00)), closes [#38](https://github.com/peaceiris/actions-mdbook/issues/38) * update (#40) ([acf2c5c](https://github.com/peaceiris/actions-mdbook/commit/acf2c5c8269030ee35ca9f61133e9390e94c7eeb)), closes [#40](https://github.com/peaceiris/actions-mdbook/issues/40) * update (#47) ([4dba9ba](https://github.com/peaceiris/actions-mdbook/commit/4dba9baa1307c74b485c75c658907a260c5d229e)), closes [#47](https://github.com/peaceiris/actions-mdbook/issues/47) * upgrade node v12.14.1 (#37) ([edf92a1](https://github.com/peaceiris/actions-mdbook/commit/edf92a1cc10b348420ed7d81997de29efb8f7809)), closes [#37](https://github.com/peaceiris/actions-mdbook/issues/37) ### docs * Add link to CHANGELOG.md ([9cdaf0d](https://github.com/peaceiris/actions-mdbook/commit/9cdaf0d3f2382fad5fa58732a93ec823b45a6957)) * update TOC ([783aa75](https://github.com/peaceiris/actions-mdbook/commit/783aa758318a6948db9405f4fd92c3b54e6300ee)) ### test * Enhance test case name (#39) ([7cab470](https://github.com/peaceiris/actions-mdbook/commit/7cab470ed8f0193d18d5ac036ed6a49d721c0a2d)), closes [#39](https://github.com/peaceiris/actions-mdbook/issues/39) * Rename test name (#35) ([ea1428f](https://github.com/peaceiris/actions-mdbook/commit/ea1428f1d2ab0a9ded5c1a606efa812bc86e25ff)), closes [#35](https://github.com/peaceiris/actions-mdbook/issues/35) # [1.1.0](https://github.com/peaceiris/actions-mdbook/compare/v1.1.0-1...v1.1.0) (2020-01-05) ### ci * 🎡 Add coveralls ([727b531](https://github.com/peaceiris/actions-mdbook/commit/727b53162eacd4f044d8f09cb039a084bbc1c511)) * Add Coveralls action ([11dfa38](https://github.com/peaceiris/actions-mdbook/commit/11dfa38f43ad1a2d00a05c82afea4445a795b87b)) * Add Coveralls Finished step for matrix test ([60fca39](https://github.com/peaceiris/actions-mdbook/commit/60fca391f4249ad70cec62ae9aa506496fb1b135)) * Add Coveralls step ([8ac10d6](https://github.com/peaceiris/actions-mdbook/commit/8ac10d6a895b32ecfa54824d0239f3560ae259fc)) * Fix Coveralls step ([a1388c0](https://github.com/peaceiris/actions-mdbook/commit/a1388c0b02782105bfa96ec348d7f3d9a00b4970)) * Fix Coveralls step filter ([258d807](https://github.com/peaceiris/actions-mdbook/commit/258d807070842cd69b0f6e20b1bfb54d777a9847)) * Remove branches-ignore ([0505b50](https://github.com/peaceiris/actions-mdbook/commit/0505b5096500cab48559740bbcc40e6131199551)) * Remove coveralls ([ca6e120](https://github.com/peaceiris/actions-mdbook/commit/ca6e1208a9ad27039c1c6cad4bfc7e341accdd05)) * Remove Coveralls parallel Finished step ([be5a8ce](https://github.com/peaceiris/actions-mdbook/commit/be5a8ceb7d8c53c03814f3f7fcd92da9ac35f4e8)) * Rename steps ([8b130ac](https://github.com/peaceiris/actions-mdbook/commit/8b130ac8856863d562a2832c5329d786a286df65)) ### docs * Add Coverage Status badge (coveralls) ([03cf133](https://github.com/peaceiris/actions-mdbook/commit/03cf133f7a5776fd5d564bc9e2dc3525ff3571f3)) ### refactor * Prune duplicate lines (#29) ([87208c9](https://github.com/peaceiris/actions-mdbook/commit/87208c9fbc1b101f71e2799ee216f05f28849a4f)), closes [#29](https://github.com/peaceiris/actions-mdbook/issues/29) * Remove extra try-catch (#30) ([17fabeb](https://github.com/peaceiris/actions-mdbook/commit/17fabeb6e0f7c6abac79083a8f724ae720f1f6a2)), closes [#30](https://github.com/peaceiris/actions-mdbook/issues/30) * Remove invalid exception (#32) ([30be24c](https://github.com/peaceiris/actions-mdbook/commit/30be24c97d7ebd2dbd62640b65f65c1186dbea1f)), closes [#32](https://github.com/peaceiris/actions-mdbook/issues/32) * Split installer into some functions (#33) ([dd67832](https://github.com/peaceiris/actions-mdbook/commit/dd678328a032dac1ec3c01dafed4615315fee0f3)), closes [#33](https://github.com/peaceiris/actions-mdbook/issues/33) ### test * Add exception test ([368f190](https://github.com/peaceiris/actions-mdbook/commit/368f190119bff55e49674e9e96d03f2d251e2834)) * Add get-latest-version test (#31) ([258d379](https://github.com/peaceiris/actions-mdbook/commit/258d3799d4773f753327abca603c238e13e41878)), closes [#31](https://github.com/peaceiris/actions-mdbook/issues/31) * Add test for showVersion() (#28) ([8bd8aaa](https://github.com/peaceiris/actions-mdbook/commit/8bd8aaa7d63ae22f3f441665dd73b309ad2b7a50)), closes [#28](https://github.com/peaceiris/actions-mdbook/issues/28) # [1.1.0-1](https://github.com/peaceiris/actions-mdbook/compare/v1.0.2...v1.1.0-1) (2020-01-01) ### chore * Add .gitattributes ([640bafa](https://github.com/peaceiris/actions-mdbook/commit/640bafa2dd57b728945b7c9dbb193253e5d1cb45)) * fix tag push ([29a4987](https://github.com/peaceiris/actions-mdbook/commit/29a4987085e42e76f38bd45b8ab8bc746dfa13c7)) ### ci * 🎡 Add branches-ignore ([c11d861](https://github.com/peaceiris/actions-mdbook/commit/c11d86124cba0b2956749d054a59abf0e4d960f2)) * Add release npm task ([46c7b97](https://github.com/peaceiris/actions-mdbook/commit/46c7b97009d957675bc10db508f94067812094d7)) * Enhance RELEASE_TYPE_LIST order ([e7272ee](https://github.com/peaceiris/actions-mdbook/commit/e7272ee7166f156356355c73c62adc6e06344cc2)) * Fix BASE_BRANCH of hub pull-request ([11dc2f5](https://github.com/peaceiris/actions-mdbook/commit/11dc2f5d9cf49200de60e3c0b5a895d2d57e3f46)) * Fix release workflow ([314c9a4](https://github.com/peaceiris/actions-mdbook/commit/314c9a4ecbbe1251e1bb17335ea141e153d2f863)) * Fix release.sh ([99653a0](https://github.com/peaceiris/actions-mdbook/commit/99653a0f1a39bb8227a778702777da8a558c376b)) ### docs * add link to peaceiris/docker-mdbook ([8608906](https://github.com/peaceiris/actions-mdbook/commit/8608906ecc006d594efc03c34466fc4ab1bfcfef)) * pin actions/checkout to v2 ([9266bb6](https://github.com/peaceiris/actions-mdbook/commit/9266bb69f8af54e91e14ecfc1dd00ba312bce2ed)) * remove extra whitespace ([e763f8d](https://github.com/peaceiris/actions-mdbook/commit/e763f8d7cdf0b2621d18e9c70b3a2c16b548aed7)) * Remove first template ([c40219f](https://github.com/peaceiris/actions-mdbook/commit/c40219fafe8c85b47570e05bdebbf27d0ec82aa9)) * update Maintainer Notes ([7f5c1b1](https://github.com/peaceiris/actions-mdbook/commit/7f5c1b1eb5633c8fa6a522d49c022a47932aea71)) ### feat * update deps (#10) ([1ac4296](https://github.com/peaceiris/actions-mdbook/commit/1ac4296805f637d0d92b27cd286a389d3d699846)), closes [#10](https://github.com/peaceiris/actions-mdbook/issues/10) * update deps (#16) ([19d4725](https://github.com/peaceiris/actions-mdbook/commit/19d472587c2c763717879a98cb93c6c978b877a7)), closes [#16](https://github.com/peaceiris/actions-mdbook/issues/16) * update deps (#17) ([25e2ba7](https://github.com/peaceiris/actions-mdbook/commit/25e2ba73e4c35b1fba36bdeca213b362f051479d)), closes [#17](https://github.com/peaceiris/actions-mdbook/issues/17) * update node 12.14.0 (#11) ([28bdbcc](https://github.com/peaceiris/actions-mdbook/commit/28bdbccb5b6ebab58c69127867d38dbf1c332bd9)), closes [#11](https://github.com/peaceiris/actions-mdbook/issues/11) ### refactor * Enhance getLatestVersion() (#22) ([be86ec4](https://github.com/peaceiris/actions-mdbook/commit/be86ec4c7ea52481768524c2d2f016eae780c90a)), closes [#22](https://github.com/peaceiris/actions-mdbook/issues/22) * Promise to async (#24) ([bbf6904](https://github.com/peaceiris/actions-mdbook/commit/bbf6904d6786d5ca09e440147b2434a990d88d83)), closes [#24](https://github.com/peaceiris/actions-mdbook/issues/24) # 1.1.0-0 (2019-12-31) ### ci * Add build assets ([ad4ae66](https://github.com/peaceiris/actions-mdbook/commit/ad4ae6651ef8065b334183227282577711b4209f)) * Fix CHANGELOG diff ([e30d78d](https://github.com/peaceiris/actions-mdbook/commit/e30d78d4734bbfbc4579dbbefa449edd4925b941)) ## 1.0.3 (2019-12-29) ## 1.0.3-1 (2019-12-29) ### docs * Remove first template ([c40219f](https://github.com/peaceiris/actions-mdbook/commit/c40219fafe8c85b47570e05bdebbf27d0ec82aa9)) ## 1.0.3-0 (2019-12-29) ### ci * Add release npm task ([46c7b97](https://github.com/peaceiris/actions-mdbook/commit/46c7b97009d957675bc10db508f94067812094d7)) ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2019 Shohei Ueda (peaceiris) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: Makefile ================================================ cmd := "bash" msg := "" IMAGE_NAME := actions-mdbook-dev:latest DOCKER_BUILD := docker build . -t $(IMAGE_NAME) --file ./__tests__/Dockerfile DOCKER_RUN := docker run --rm -i -t -v ${PWD}:/repo -v ~/.gitconfig:/root/.gitconfig $(IMAGE_NAME) .PHONY: build build: $(DOCKER_BUILD) .PHONY: run run: $(DOCKER_RUN) $(cmd) .PHONY: test test: $(DOCKER_RUN) npm test .PHONY: commit commit: $(DOCKER_RUN) git commit -m "$(msg)" ================================================ FILE: README.md ================================================

GitHub Actions for mdBook

GitHub Actions for mdBook thumbnail
[![license](https://img.shields.io/github/license/peaceiris/actions-mdbook.svg)](https://github.com/peaceiris/actions-mdbook/blob/main/LICENSE) [![release](https://img.shields.io/github/release/peaceiris/actions-mdbook.svg)](https://github.com/peaceiris/actions-mdbook/releases/latest) [![GitHub release date](https://img.shields.io/github/release-date/peaceiris/actions-mdbook.svg)](https://github.com/peaceiris/actions-mdbook/releases) ![Test](https://github.com/peaceiris/actions-mdbook/workflows/Test/badge.svg?branch=main&event=push) [![CodeFactor](https://www.codefactor.io/repository/github/peaceiris/actions-mdbook/badge)](https://www.codefactor.io/repository/github/peaceiris/actions-mdbook) [![codecov](https://codecov.io/gh/peaceiris/actions-mdbook/branch/main/graph/badge.svg)](https://codecov.io/gh/peaceiris/actions-mdbook) [![Release Feed](https://img.shields.io/badge/release-feed-yellow)](https://github.com/peaceiris/actions-mdbook/releases.atom) [rust-lang/mdBook] Setup Action. [rust-lang/mdBook]: https://github.com/rust-lang/mdBook We can run **mdBook** on a virtual machine of **GitHub Actions** by this mdBook action. Linux, macOS, and Windows are supported. | OS (runs-on) | ubuntu-20.04, ubuntu-22.04 | macos-latest | windows-2019 | |---|:---:|:---:|:---:| | Support | ✅️ | ✅️ | ✅️ | ## Table of Contents - [Getting Started](#getting-started) - [⭐️ Create your workflow](#%EF%B8%8F-create-your-workflow) - [Options](#options) - [⭐️ Use the latest version of mdBook](#%EF%B8%8F-use-the-latest-version-of-mdbook) - [Tips](#tips) - [⭐️ Read mdBook version from file](#%EF%B8%8F-read-mdbook-version-from-file) - [CHANGELOG](#changelog) - [License](#license) - [About Maintainer](#about-maintainer) - [Maintainer Notes](#maintainer-notes) ## Getting Started ### ⭐️ Create your workflow An example workflow `.github/workflows/gh-pages.yml` with [GitHub Actions for GitHub Pages]. 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) [GitHub Actions for GitHub Pages]: https://github.com/peaceiris/actions-gh-pages [![peaceiris/actions-gh-pages - GitHub](https://gh-card.dev/repos/peaceiris/actions-gh-pages.svg?fullname)](https://github.com/peaceiris/actions-gh-pages) ```yaml name: github pages on: push: branches: - main pull_request: jobs: deploy: runs-on: ubuntu-20.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 - name: Setup mdBook uses: peaceiris/actions-mdbook@v2 with: mdbook-version: '0.4.10' # mdbook-version: 'latest' - run: mdbook build - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./book ```
Back to TOC ☝️
## Options ### ⭐️ Use the latest version of mdBook Set `mdbook-version: 'latest'` to use the latest version of mdBook. ```yaml - name: Setup mdBook uses: peaceiris/actions-mdbook@v2 with: mdbook-version: 'latest' ``` This action fetches the latest version of mdBook by [mdbook — Homebrew Formulae](https://formulae.brew.sh/formula/mdbook)
Back to TOC ☝️
## Tips ### ⭐️ Read mdBook version from file How to sync a mdBook version between a Docker Compose and a GitHub Actions workflow via `.env` file. Write a `MDBOOK_VERSION` to the `.env` file like the following and push it to a remote branch. ```sh MDBOOK_VERSION=0.4.10 ``` Next, add a step to read a mdBook version from the `.env` file. ```yaml - name: Read .env id: mdbook-version run: | . ./.env echo "::set-output name=MDBOOK_VERSION::${MDBOOK_VERSION}" - name: Setup mdBook uses: peaceiris/actions-mdbook@v2 with: mdbook-version: '${{ steps.mdbook-version.outputs.MDBOOK_VERSION }}' ``` Here is a `docker-compose.yml` example. ```yaml version: '3' services: mdbook: container_name: mdbook image: "peaceiris/mdbook:v${MDBOOK_VERSION}" # image: "peaceiris/mdbook:v${MDBOOK_VERSION}-rust" # Large image including Rust compiler stdin_open: true tty: true ports: - 3000:3000 - 3001:3001 volumes: - ${PWD}:/book command: - serve - --hostname - '0.0.0.0' ``` The alpine base mdBook Docker image is provided on the following repository. > [peaceiris/docker-mdbook: mdBook Alpine Base Docker Image.](https://github.com/peaceiris/docker-mdbook)
Back to TOC ☝️
## CHANGELOG - [CHANGELOG.md](CHANGELOG.md) ## License - [MIT License - peaceiris/actions-mdbook] [MIT License - peaceiris/actions-mdbook]: https://github.com/peaceiris/actions-mdbook/blob/main/LICENSE ## About Maintainer - [peaceiris homepage](https://peaceiris.com/) - [GitHub Action Hero: Shohei Ueda - The GitHub Blog](https://github.blog/2020-03-22-github-action-hero-shohei-ueda/) ## Maintainer Notes Run `npm` and `git commit` commands on a container. **On Host** ```sh # Docker make build make run make run cmd="env" make test make commit msg="chore: Add Makefile" # Release ./release.sh ```
Back to TOC ☝️
================================================ FILE: __tests__/Dockerfile ================================================ FROM node:12-slim WORKDIR /repo RUN apt-get update && \ apt-get -y install --no-install-recommends \ git \ bash && \ rm -rf /var/lib/apt/lists/* CMD [ "bash" ] ================================================ FILE: __tests__/data/brew.json ================================================ {"name":"mdbook","full_name":"mdbook","oldname":null,"aliases":[],"versioned_formulae":[],"desc":"Create modern online books from Markdown files","homepage":"https://rust-lang.github.io/mdBook/","versions":{"stable":"0.3.5","devel":null,"head":null,"bottle":true},"revision":0,"version_scheme":0,"bottle":{"stable":{"rebuild":0,"cellar":":any_skip_relocation","prefix":"/usr/local","root_url":"https://homebrew.bintray.com/bottles","files":{"catalina":{"url":"https://homebrew.bintray.com/bottles/mdbook-0.3.5.catalina.bottle.tar.gz","sha256":"0f164851ce201f257d69d4d55e50fa7707cea1ab268a5b239266a4662845beef"},"mojave":{"url":"https://homebrew.bintray.com/bottles/mdbook-0.3.5.mojave.bottle.tar.gz","sha256":"1a2b15f790541dc456294475b42927a152ea614857dfb49ca5f1a00aec1e9509"},"high_sierra":{"url":"https://homebrew.bintray.com/bottles/mdbook-0.3.5.high_sierra.bottle.tar.gz","sha256":"b2305bde8f2f620393c813fc208e9364e0681eff43d6535e7202841fc832ec9c"}}}},"keg_only":false,"bottle_disabled":false,"options":[],"build_dependencies":["rust"],"dependencies":[],"recommended_dependencies":[],"optional_dependencies":[],"uses_from_macos":[],"requirements":[],"conflicts_with":[],"caveats":null,"installed":[],"linked_keg":null,"pinned":false,"outdated":false,"analytics":{"install":{"30d":{"mdbook":62},"90d":{"mdbook":451},"365d":{"mdbook":774}},"install_on_request":{"30d":{"mdbook":62},"90d":{"mdbook":450},"365d":{"mdbook":774}},"build_error":{"30d":{"mdbook":0}}}} ================================================ FILE: __tests__/data/github.json ================================================ { "url": "https://api.github.com/repos/rust-lang/mdBook/releases/21381829", "assets_url": "https://api.github.com/repos/rust-lang/mdBook/releases/21381829/assets", "upload_url": "https://uploads.github.com/repos/rust-lang/mdBook/releases/21381829/assets{?name,label}", "html_url": "https://github.com/rust-lang/mdBook/releases/tag/v0.3.5", "id": 21381829, "node_id": "MDc6UmVsZWFzZTIxMzgxODI5", "tag_name": "v0.3.5", "target_commitish": "master", "name": "v0.3.5", "draft": false, "author": { "login": "ehuss", "id": 43198, "node_id": "MDQ6VXNlcjQzMTk4", "avatar_url": "https://avatars0.githubusercontent.com/u/43198?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ehuss", "html_url": "https://github.com/ehuss", "followers_url": "https://api.github.com/users/ehuss/followers", "following_url": "https://api.github.com/users/ehuss/following{/other_user}", "gists_url": "https://api.github.com/users/ehuss/gists{/gist_id}", "starred_url": "https://api.github.com/users/ehuss/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ehuss/subscriptions", "organizations_url": "https://api.github.com/users/ehuss/orgs", "repos_url": "https://api.github.com/users/ehuss/repos", "events_url": "https://api.github.com/users/ehuss/events{/privacy}", "received_events_url": "https://api.github.com/users/ehuss/received_events", "type": "User", "site_admin": false }, "prerelease": false, "created_at": "2019-11-11T21:36:13Z", "published_at": "2019-11-11T21:37:26Z", "assets": [ { "url": "https://api.github.com/repos/rust-lang/mdBook/releases/assets/16096171", "id": 16096171, "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDk2MTcx", "name": "mdbook-v0.3.5-x86_64-apple-darwin.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "site_admin": false }, "content_type": "application/octet-stream", "state": "uploaded", "size": 3409794, "download_count": 212, "created_at": "2019-11-11T21:44:16Z", "updated_at": "2019-11-11T21:44:17Z", "browser_download_url": "https://github.com/rust-lang/mdBook/releases/download/v0.3.5/mdbook-v0.3.5-x86_64-apple-darwin.tar.gz" }, { "url": "https://api.github.com/repos/rust-lang/mdBook/releases/assets/16096347", "id": 16096347, "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDk2MzQ3", "name": "mdbook-v0.3.5-x86_64-pc-windows-msvc.zip", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "site_admin": false }, "content_type": "application/octet-stream", "state": "uploaded", "size": 3219324, "download_count": 283, "created_at": "2019-11-11T21:52:53Z", "updated_at": "2019-11-11T21:52:53Z", "browser_download_url": "https://github.com/rust-lang/mdBook/releases/download/v0.3.5/mdbook-v0.3.5-x86_64-pc-windows-msvc.zip" }, { "url": "https://api.github.com/repos/rust-lang/mdBook/releases/assets/16096247", "id": 16096247, "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDk2MjQ3", "name": "mdbook-v0.3.5-x86_64-unknown-linux-gnu.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "site_admin": false }, "content_type": "application/octet-stream", "state": "uploaded", "size": 3937087, "download_count": 2131, "created_at": "2019-11-11T21:48:20Z", "updated_at": "2019-11-11T21:48:21Z", "browser_download_url": "https://github.com/rust-lang/mdBook/releases/download/v0.3.5/mdbook-v0.3.5-x86_64-unknown-linux-gnu.tar.gz" } ], "tarball_url": "https://api.github.com/repos/rust-lang/mdBook/tarball/v0.3.5", "zipball_url": "https://api.github.com/repos/rust-lang/mdBook/zipball/v0.3.5", "body": "See https://github.com/rust-lang-nursery/mdBook/blob/master/CHANGELOG.md#mdbook-035 for a complete list of changes." } ================================================ FILE: __tests__/get-latest-version.test.ts ================================================ import {getURL, getLatestVersion} from '../src/get-latest-version'; const nock = require('nock'); import {FetchError} from 'node-fetch'; import jsonTestBrew from './data/brew.json'; import jsonTestGithub from './data/github.json'; beforeEach(() => { jest.resetModules(); }); afterEach(() => { nock.cleanAll(); }); const org: string = 'rust-lang'; const repo: string = 'mdbook'; const urlBrewExpected: string = `https://formulae.brew.sh/api/formula/${repo}.json`; const urlGithubExpected: string = `https://api.github.com/repos/${org}/${repo}/releases/latest`; describe('getURL()', () => { test('return expected URL', () => { const urlBrew: string = getURL(org, repo, 'brew'); const urlGithub: string = getURL(org, repo, 'github'); expect(urlBrew).toMatch(urlBrewExpected); expect(urlGithub).toMatch(urlGithubExpected); }); }); describe('getLatestVersion()', () => { let versionLatestExpected: string = '0.3.5'; test('return latest version via brew', async () => { nock('https://formulae.brew.sh') .get(`/api/formula/${repo}.json`) .reply(200, jsonTestBrew); const versionLatest: string = await getLatestVersion(org, repo, 'brew'); expect(versionLatest).toMatch(versionLatestExpected); }); test('return latest version via GitHub', async () => { nock('https://api.github.com') .get(`/repos/${org}/${repo}/releases/latest`) .reply(200, jsonTestGithub); const versionLatest: string = await getLatestVersion(org, repo, 'github'); expect(versionLatest).toMatch(versionLatestExpected); }); test('return exception 404', async () => { nock('https://formulae.brew.sh') .get(`/api/formula/${repo}.json`) .reply(404); try { const versionLatest: string = await getLatestVersion(org, repo, 'brew'); console.debug(versionLatest); } catch (e) { expect(e).toThrow(FetchError); } }); }); ================================================ FILE: __tests__/get-os.test.ts ================================================ import {getOS} from '../src/get-os'; describe('getOS()', () => { test('return expected OS name', () => { expect(getOS('linux')).toBe('unknown-linux-gnu'); expect(getOS('darwin')).toBe('apple-darwin'); expect(getOS('win32')).toBe('pc-windows-msvc'); }); test('return exception', () => { expect(() => { getOS('centos'); }).toThrowError('centos is not supported'); }); }); ================================================ FILE: __tests__/get-url.test.ts ================================================ import {getURL} from '../src/get-url'; describe('getURL()', () => { test('return extected URL', () => { const testVersion: string = '0.3.5'; const baseURL: string = `https://github.com/rust-lang/mdBook/releases/download/v${testVersion}/mdbook-v${testVersion}-x86_64`; const urlLinux: string = `${baseURL}-unknown-linux-gnu.tar.gz`; const urlMacOS: string = `${baseURL}-apple-darwin.tar.gz`; const urlWindows: string = `${baseURL}-pc-windows-msvc.zip`; expect(getURL('unknown-linux-gnu', '0.3.5')).toBe(urlLinux); expect(getURL('unknown-linux-gnu', '0.3.4')).not.toBe(urlLinux); expect(getURL('my-os', '0.3.5')).not.toBe(urlLinux); expect(getURL('apple-darwin', '0.3.5')).toBe(urlMacOS); expect(getURL('pc-windows-msvc', '0.3.5')).toBe(urlWindows); }); }); ================================================ FILE: __tests__/main.test.ts ================================================ import * as main from '../src/main'; const nock = require('nock'); import {FetchError} from 'node-fetch'; import jsonTestBrew from './data/brew.json'; // import jsonTestGithub from './data/github.json'; jest.setTimeout(30000); const repo: string = 'mdbook'; beforeEach(() => { jest.resetModules(); }); afterEach(() => { delete process.env['INPUT_MDBOOK-VERSION']; nock.cleanAll(); }); describe('Integration testing run()', () => { test('succeed in installing a custom version', async () => { const testVersion: string = '0.3.4'; process.env['INPUT_MDBOOK-VERSION'] = testVersion; const result: main.actionResult = await main.run(); expect(result.output).toMatch(`mdbook v${testVersion}`); }); test('succeed in installing the latest version', async () => { const testVersion: string = 'latest'; process.env['INPUT_MDBOOK-VERSION'] = testVersion; nock('https://formulae.brew.sh') .get(`/api/formula/${repo}.json`) .reply(200, jsonTestBrew); const result: main.actionResult = await main.run(); expect(result.output).toMatch('mdbook v0.3.5'); }); if (process.platform === 'linux') { test('fail to install a custom version due to 404 of tarball', async () => { const testVersion: string = '0.3.4'; process.env['INPUT_MDBOOK-VERSION'] = testVersion; nock('https://github.com') .get( `/rust-lang/mdBook/releases/download/v${testVersion}/mdbook-v${testVersion}-x86_64-unknown-linux-gnu.tar.gz` ) .reply(404); try { const result: main.actionResult = await main.run(); console.debug(result.output); } catch (e) { expect(e).toThrow(FetchError); } }); } test('fail to install the latest version due to 404 of brew.sh', async () => { const testVersion: string = 'latest'; process.env['INPUT_MDBOOK-VERSION'] = testVersion; nock('https://formulae.brew.sh') .get(`/api/formula/${repo}.json`) .reply(404); try { const result: main.actionResult = await main.run(); console.debug(result.output); } catch (e) { expect(e).toThrow(FetchError); } }); if (process.platform === 'linux') { test('fail to install the latest version due to 404 of tarball', async () => { const testVersion: string = 'latest'; process.env['INPUT_MDBOOK-VERSION'] = testVersion; nock('https://formulae.brew.sh') .get(`/api/formula/${repo}.json`) .reply(200, jsonTestBrew); nock('https://github.com') .get( `/rust-lang/mdBook/releases/download/v0.3.5/mdbook-v0.3.5-x86_64-unknown-linux-gnu.tar.gz` ) .reply(404); try { const result: main.actionResult = await main.run(); console.debug(result.output); } catch (e) { expect(e).toThrow(FetchError); } }); } }); describe('showVersion()', () => { let result: main.actionResult = { exitcode: 0, output: '' }; test('return version', async () => { result = await main.showVersion('git', ['--version']); expect(result.exitcode).toBe(0); expect(result.output).toMatch(/git version/); }); test('return exception', async () => { try { result = await main.showVersion('gitgit', ['--version']); } catch (e) { expect(e).toThrow(Error); } }); }); ================================================ FILE: action.yml ================================================ name: 'mdBook Action' description: 'GitHub Actions for mdBook ⚡️ Setup mdBook quickly and build your site fast.' author: 'peaceiris' inputs: mdbook-version: description: 'The mdBook version to download (if necessary) and use. Example: 0.3.5' required: false default: 'latest' runs: using: 'node20' main: 'lib/index.js' branding: icon: 'book-open' color: 'yellow' ================================================ FILE: jest.config.js ================================================ module.exports = { clearMocks: true, moduleFileExtensions: ['js', 'ts'], testEnvironment: 'node', testMatch: ['**/*.test.ts'], testRunner: 'jest-circus/runner', transform: { '^.+\\.ts$': 'ts-jest' }, verbose: true } ================================================ FILE: package.json ================================================ { "name": "actions-mdbook", "version": "2.0.0", "description": "GitHub Actions for mdBook", "main": "lib/index.js", "scripts": { "postinstall": "npx husky install", "lint": "eslint ./src/**/*.ts", "lint:fix": "eslint --fix ./src/**/*.ts", "test": "jest --coverage --verbose", "build": "ncc build ./src/index.ts -o lib", "tsc": "tsc", "format": "prettier --write '**/*.ts'", "format:check": "prettier --check '**/*.ts'", "release": "standard-version" }, "lint-staged": { "src/**/*.ts": [ "prettier --check", "eslint", "jest --bail --findRelatedTests" ] }, "repository": { "type": "git", "url": "git+https://github.com/peaceiris/actions-mdbook.git" }, "keywords": [ "GitHub", "Actions", "JavaScript", "TypeScript", "mdBook", "Setup" ], "author": "peaceiris", "license": "MIT", "bugs": { "url": "https://github.com/peaceiris/actions-mdbook/issues" }, "homepage": "https://github.com/peaceiris/actions-mdbook#readme", "dependencies": { "@actions/core": "^1.11.1", "@actions/exec": "^1.1.1", "@actions/io": "^1.1.0", "@actions/tool-cache": "^1.7.2", "node-fetch": "^2.6.1" }, "devDependencies": { "@types/jest": "^26.0.20", "@types/node": "~12", "@types/node-fetch": "^2.5.8", "@typescript-eslint/parser": "^4.15.0", "@vercel/ncc": "^0.33.0", "eslint": "^7.19.0", "husky": "^5.0.9", "jest": "^26.6.3", "jest-circus": "^26.6.3", "lint-staged": "^10.5.4", "nock": "^13.0.7", "prettier": "2.2.1", "standard-version": "^9.1.0", "ts-jest": "^26.5.1", "typescript": "^4.1.4" } } ================================================ FILE: release.sh ================================================ #!/usr/bin/env bash # fail on unset variables and command errors set -eu -o pipefail # -x: is for debugging if [ "$(git branch --show-current)" != "main" ]; then echo "$0: Current branch is not main" 1>&2 exit 1 fi RELEASE_TYPE_LIST="prerelease prepatch patch preminor minor major premajor" if command -v fzf; then RELEASE_TYPE=$(echo "${RELEASE_TYPE_LIST}" | tr ' ' '\n' | fzf --layout=reverse) else select sel in ${RELEASE_TYPE_LIST}; do RELEASE_TYPE="${sel}" break done fi echo "$0: Create ${RELEASE_TYPE} release, continue? (y/n)" read -r res if [ "${res}" = "n" ]; then echo "$0: Stop script" exit 0 fi git fetch origin git pull origin main git tag -d v1 || true git pull origin --tags npm ci mkdir ./lib npm run build git add ./lib/index.js git commit -m "chore(release): Add build assets" npm run release -- --release-as "${RELEASE_TYPE}" --preset eslint git rm ./lib/index.js rm -rf ./lib git commit -m "chore(release): Remove build assets [skip ci]" TAG_NAME="v$(jq -r '.version' ./package.json)" git push origin main git push origin "${TAG_NAME}" ================================================ FILE: src/get-latest-version.ts ================================================ import fetch from 'node-fetch'; export function getURL(org: string, repo: string, api: string): string { let url: string = ''; if (api === 'brew') { url = `https://formulae.brew.sh/api/formula/${repo}.json`; } else if (api === 'github') { url = `https://api.github.com/repos/${org}/${repo}/releases/latest`; } return url; } export async function getLatestVersion( org: string, repo: string, api: string ): Promise { try { const url = getURL(org, repo, api); const response = await fetch(url); const json = await response.json(); let latestVersion: string = ''; if (api === 'brew') { latestVersion = json.versions.stable; } else if (api === 'github') { latestVersion = json.tag_name; } return latestVersion; } catch (e) { return e; } } ================================================ FILE: src/get-os.ts ================================================ export function getOS(platform: string) { if (platform === 'linux') { return 'unknown-linux-gnu'; } else if (platform === 'darwin') { return 'apple-darwin'; } else if (platform === 'win32') { return 'pc-windows-msvc'; } else { throw new Error(`${platform} is not supported`); } } ================================================ FILE: src/get-url.ts ================================================ export function getURL(os: string, version: string): string { const ext = (os: string) => { if (os === 'pc-windows-msvc') { return 'zip'; } else { return 'tar.gz'; } }; const mdbookName: string = `mdbook-v${version}-x86_64-${os}`; const baseURL: string = 'https://github.com/rust-lang/mdBook/releases/download'; const url: string = `${baseURL}/v${version}/${mdbookName}.${ext(os)}`; return url; } ================================================ FILE: src/index.ts ================================================ import * as core from '@actions/core'; import * as main from './main'; (async (): Promise => { try { await main.run(); } catch (e) { core.setFailed(`Action failed with error ${e.message}`); } })(); ================================================ FILE: src/installer.ts ================================================ import * as core from '@actions/core'; import * as tc from '@actions/tool-cache'; import * as io from '@actions/io'; import {getOS} from './get-os'; import {getURL} from './get-url'; import * as path from 'path'; export function getBaseLocation(): string { let baseLocation: string = ''; if (process.platform === 'win32') { baseLocation = process.env['USERPROFILE'] || 'C:\\'; } else { baseLocation = `${process.env.HOME}`; } core.debug(`tempDir: ${baseLocation}`); return baseLocation; } export async function createTempDir(baseLocation: string): Promise { let tempDir: string = process.env['RUNNER_TEMPDIRECTORY'] || ''; if (tempDir === '') { tempDir = path.join(baseLocation, 'tmp'); } await io.mkdirP(tempDir); core.debug(`tempDir: ${tempDir}`); return tempDir; } export async function installer(version: string) { const osName: string = getOS(process.platform); core.info(`Operating System: ${osName}`); const toolURL: string = getURL(osName, version); core.info(`toolURL: ${toolURL}`); const baseLocation: string = getBaseLocation(); const toolPath: string = path.join(baseLocation, 'toolbin'); await io.mkdirP(toolPath); core.addPath(toolPath); // Download and extract mdbook binary const tempDir: string = await createTempDir(baseLocation); const toolAssets: string = await tc.downloadTool(toolURL); let toolBin: string = ''; if (process.platform === 'win32') { const toolExtractedFolder: string = await tc.extractZip( toolAssets, tempDir ); toolBin = `${toolExtractedFolder}/mdbook.exe`; } else { const toolExtractedFolder: string = await tc.extractTar( toolAssets, tempDir ); toolBin = `${toolExtractedFolder}/mdbook`; } await io.mv(toolBin, toolPath); } ================================================ FILE: src/main.ts ================================================ import * as core from '@actions/core'; import * as exec from '@actions/exec'; import {getLatestVersion} from './get-latest-version'; import {installer} from './installer'; export interface actionResult { exitcode: number; output: string; } export async function showVersion( cmd: string, args: string[] ): Promise { try { let result: actionResult = { exitcode: 0, output: '' }; const options = { listeners: { stdout: (data: Buffer) => { result.output += data.toString(); } } }; result.exitcode = await exec.exec(cmd, args, options); core.debug(` exit code: ${result.exitcode} stdout: ${result.output} `); return result; } catch (e) { return e; } } // most @actions toolkit packages have async methods export async function run(): Promise { try { let toolVersion: string = core.getInput('mdbook-version'); let installVersion: string = ''; let result: actionResult = { exitcode: 0, output: '' }; if (toolVersion === '' || toolVersion === 'latest') { installVersion = await getLatestVersion('rust-lang', 'mdbook', 'brew'); } else { installVersion = toolVersion; } core.info(`mdbook version: ${installVersion}`); await installer(installVersion); result = await showVersion('mdbook', ['--version']); return result; } catch (e) { core.setFailed(`Action failed with error ${e}`); return e; } } ================================================ FILE: tsconfig.json ================================================ { "compilerOptions": { /* Basic Options */ // "incremental": true, /* Enable incremental compilation */ "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ // "allowJs": true, /* Allow javascript files to be compiled. */ // "checkJs": true, /* Report errors in .js files. */ // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ // "declaration": true, /* Generates corresponding '.d.ts' file. */ // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ "sourceMap": true, /* Generates corresponding '.map' file. */ // "outFile": "./", /* Concatenate and emit output to single file. */ "outDir": "./lib", /* Redirect output structure to the directory. */ "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ // "composite": true, /* Enable project compilation */ // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ "removeComments": true, /* Do not emit comments to output. */ // "noEmit": true, /* Do not emit outputs. */ // "importHelpers": true, /* Import emit helpers from 'tslib'. */ // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ /* Strict Type-Checking Options */ "strict": true, /* Enable all strict type-checking options. */ "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ // "strictNullChecks": true, /* Enable strict null checks. */ // "strictFunctionTypes": true, /* Enable strict checking of function types. */ // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ /* Additional Checks */ // "noUnusedLocals": true, /* Report errors on unused locals. */ // "noUnusedParameters": true, /* Report errors on unused parameters. */ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ /* Module Resolution Options */ // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ // "typeRoots": [], /* List of folders to include type definitions from. */ // "types": [], /* Type declaration files to be included in compilation. */ // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ /* Source Map Options */ // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ /* Experimental Options */ // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ "resolveJsonModule": true, }, "exclude": ["node_modules", "**/*.test.ts"] }