Compare commits

...

12 Commits

Author SHA1 Message Date
peaceiris
5fe58fddba chore(release): 3.5.10
Some checks failed
Release / release (push) Has been cancelled
2020-04-30 23:49:31 +09:00
peaceiris
54a4434749 chore(release): Add build assets 2020-04-30 23:49:28 +09:00
Shohei Ueda
20d80bcd8c docs: change to job level defaults
Change workflow level defaults.run.working-directory to job level in Docusaurus example.
2020-04-30 23:48:01 +09:00
Shohei Ueda
d9f616f4a2 docs: Add ubuntu-16.04
cf. #263
2020-04-30 23:42:27 +09:00
Shohei Ueda
e76c874d85 feat: Support ubuntu-16.04 (#263)
* ci: Add ubuntu-16.04
* ci: bump actions/upload-artifact from v1 to v2
* ci: Fix file name for all matrix
2020-04-30 23:36:53 +09:00
Shohei Ueda
029c1a08f9 docs: bump actions/setup-python from v1 to v2 (#262)
https://github.com/actions/setup-python/pull/87
https://github.com/actions/setup-python/pull/85

Testing https://github.com/peaceiris/mkdocs-material-boilerplate/pull/102
2020-04-30 23:13:03 +09:00
Shohei Ueda
eafac7a3ef docs: bump python from 3.6 to 3.8 2020-04-30 17:04:31 +09:00
Shohei Ueda
e4462d9bb6 docs: Enhance Python workflow example (#261)
4e1362e350

ccf9619480
https://github.com/actions/cache/pull/285
2020-04-30 17:03:08 +09:00
Shohei Ueda
91e6658ef0 docs: Enhance Supported Platforms 2020-04-30 16:38:29 +09:00
dependabot-preview[bot]
714f710922 deps: bump jest from 25.5.1 to 25.5.2 (#260) 2020-04-29 22:30:52 +00:00
dependabot-preview[bot]
813be0645e deps: bump jest-circus from 25.5.1 to 25.5.2 (#259) 2020-04-29 22:24:44 +00:00
peaceiris
a580dd75ed chore(release): Remove build assets [skip ci] 2020-04-30 03:07:46 +09:00
5 changed files with 158 additions and 337 deletions

View File

@@ -26,6 +26,7 @@ jobs:
matrix:
os:
- 'ubuntu-18.04'
- 'ubuntu-16.04'
- 'macos-latest'
- 'windows-latest'
steps:
@@ -56,19 +57,19 @@ jobs:
- run: npm ci
- name: Run prettier
if: startsWith(matrix.os, 'ubuntu')
if: startsWith(matrix.os, 'ubuntu-18.04')
run: npm run format:check
- name: Run eslint
if: startsWith(matrix.os, 'ubuntu')
if: startsWith(matrix.os, 'ubuntu-18.04')
run: npm run lint
- run: npm test
- name: Upload test coverage as artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v2
with:
name: coverage
name: coverage-${{ matrix.os }}
path: coverage
- uses: codecov/codecov-action@v1
@@ -97,7 +98,7 @@ jobs:
- name: Deploy
if: |
startsWith(matrix.os, 'ubuntu') &&
startsWith(matrix.os, 'ubuntu-18.04') &&
github.ref == 'refs/heads/master'
uses: ./
with:
@@ -114,6 +115,24 @@ jobs:
# commit_message: ${{ github.event.head_commit.message }}
cname: 'actions-gh-pages.peaceiris.com'
- name: Deploy
if: |
startsWith(matrix.os, 'ubuntu-16.04') &&
github.ref == 'refs/heads/master'
uses: ./
with:
# deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages-ubuntu-16.04
publish_dir: ./test_projects/mdbook/book
# external_repository: ''
allow_empty_commit: true
keep_files: true
force_orphan: true
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
# commit_message: ${{ github.event.head_commit.message }}
- name: Deploy
if: |
startsWith(matrix.os, 'macos') &&

View File

@@ -2,6 +2,29 @@
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.
## [3.5.10](https://github.com/peaceiris/actions-gh-pages/compare/v3.5.9...v3.5.10) (2020-04-30)
### deps
* bump jest from 25.5.1 to 25.5.2 (#260) ([714f710](https://github.com/peaceiris/actions-gh-pages/commit/714f7109225b609d3303bb0cd6f459690a9165b6)), closes [#260](https://github.com/peaceiris/actions-gh-pages/issues/260)
* bump jest-circus from 25.5.1 to 25.5.2 (#259) ([813be06](https://github.com/peaceiris/actions-gh-pages/commit/813be0645e175e6e475ada4f9cc922daeeade00a)), closes [#259](https://github.com/peaceiris/actions-gh-pages/issues/259)
### docs
* Add ubuntu-16.04 ([d9f616f](https://github.com/peaceiris/actions-gh-pages/commit/d9f616f4a278b6c334ce6dea09e69ba698459b38)), closes [#263](https://github.com/peaceiris/actions-gh-pages/issues/263)
* bump actions/setup-python from v1 to v2 (#262) ([029c1a0](https://github.com/peaceiris/actions-gh-pages/commit/029c1a08f9594e3b2c581d78c258cc8e9c66f96c)), closes [#262](https://github.com/peaceiris/actions-gh-pages/issues/262)
* bump python from 3.6 to 3.8 ([eafac7a](https://github.com/peaceiris/actions-gh-pages/commit/eafac7a3ef405ea76543c2c7995b64a19a1695c0))
* change to job level defaults ([20d80bc](https://github.com/peaceiris/actions-gh-pages/commit/20d80bcd8cdfda9728f3c0befe2aa5052209ea50))
* Enhance Python workflow example (#261) ([e4462d9](https://github.com/peaceiris/actions-gh-pages/commit/e4462d9bb679154cb07cca446c8e12c692610838)), closes [#261](https://github.com/peaceiris/actions-gh-pages/issues/261)
* Enhance Supported Platforms ([91e6658](https://github.com/peaceiris/actions-gh-pages/commit/91e6658ef01bbd482a965675988a765faad5fce5))
### feat
* Support ubuntu-16.04 (#263) ([e76c874](https://github.com/peaceiris/actions-gh-pages/commit/e76c874d85f0c0e45f3602fe4a85a15feb87610c)), closes [#263](https://github.com/peaceiris/actions-gh-pages/issues/263)
## [3.5.9](https://github.com/peaceiris/actions-gh-pages/compare/v3.5.8...v3.5.9) (2020-04-29)

View File

@@ -45,9 +45,12 @@ Notes: Actually, the `GITHUB_TOKEN` works for deploying to GitHub Pages but it h
### Supported Platforms
All Actions runners: Linux (Ubuntu), macOS, and Windows are supported.
| runs-on | `github_token` | `deploy_key` | `personal_token` |
|---|:---:|:---:|:---:|
| ubuntu-18.04 | ✅️ | ✅️ | ✅️ |
| ubuntu-16.04 | ✅️ | ✅️ | ✅️ |
| macos-latest | ✅️ | ✅️ | ✅️ |
| windows-latest | ✅️ | (2) | ✅️ |
@@ -718,13 +721,12 @@ on:
- '.github/workflows/deploy.yml'
- 'website/**'
defaults:
run:
working-directory: website
jobs:
deploy:
runs-on: ubuntu-18.04
defaults:
run:
working-directory: website
steps:
- uses: actions/checkout@v2
@@ -780,23 +782,29 @@ jobs:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: '3.6'
architecture: 'x64'
python-version: '3.8'
- name: Upgrade pip
run: |
# install pip=>20.1 to use "pip cache dir"
python3 -m pip install --upgrade pip
- name: Get pip cache dir
id: pip-cache
run: echo "::set-output name=dir::$(pip cache dir)"
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.cache/pip
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r ./requirements.txt
run: python3 -m pip install -r ./requirements.txt
- run: mkdocs build

407
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "actions-github-pages",
"version": "3.5.9",
"version": "3.5.10",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@@ -439,9 +439,9 @@
}
},
"@jest/core": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/@jest/core/-/core-25.5.1.tgz",
"integrity": "sha512-RxJuMJrcCbM0KzF8LQMxhVCN40EoCRwjd7g2mFDbTCxW+eW9gey3eLoDCicsSq5MR7FG5ms37LClPiba0kZnww==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/@jest/core/-/core-25.5.2.tgz",
"integrity": "sha512-vc7WqwPbFX22EWDbuxJDnWDh5YYyReimgxKO/DYA1wMJd7/PcbUwM4PY7xadRZ2ze8Wi3OtmXP8ZbJEfcWY5Xg==",
"dev": true,
"requires": {
"@jest/console": "^25.5.0",
@@ -454,14 +454,14 @@
"exit": "^0.1.2",
"graceful-fs": "^4.2.4",
"jest-changed-files": "^25.5.0",
"jest-config": "^25.5.1",
"jest-config": "^25.5.2",
"jest-haste-map": "^25.5.1",
"jest-message-util": "^25.5.0",
"jest-regex-util": "^25.2.6",
"jest-resolve": "^25.5.1",
"jest-resolve-dependencies": "^25.5.1",
"jest-runner": "^25.5.1",
"jest-runtime": "^25.5.1",
"jest-resolve-dependencies": "^25.5.2",
"jest-runner": "^25.5.2",
"jest-runtime": "^25.5.2",
"jest-snapshot": "^25.5.1",
"jest-util": "^25.5.0",
"jest-validate": "^25.5.0",
@@ -600,9 +600,9 @@
}
},
"@jest/globals": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/globals/-/globals-25.5.0.tgz",
"integrity": "sha512-yC+WlD1ytYPZvTSbmSeZM+BNbkFXtkTBBjtmoFDYxjznwugl2Qv2KW7csxL7nTxJOxyjkffy6ngLZ6YMqAe7MA==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/@jest/globals/-/globals-25.5.2.tgz",
"integrity": "sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==",
"dev": true,
"requires": {
"@jest/environment": "^25.5.0",
@@ -621,78 +621,6 @@
"@types/yargs": "^15.0.0",
"chalk": "^3.0.0"
}
},
"expect": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/expect/-/expect-25.5.0.tgz",
"integrity": "sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==",
"dev": true,
"requires": {
"@jest/types": "^25.5.0",
"ansi-styles": "^4.0.0",
"jest-get-type": "^25.2.6",
"jest-matcher-utils": "^25.5.0",
"jest-message-util": "^25.5.0",
"jest-regex-util": "^25.2.6"
}
},
"graceful-fs": {
"version": "4.2.4",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
"dev": true
},
"jest-diff": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.5.0.tgz",
"integrity": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==",
"dev": true,
"requires": {
"chalk": "^3.0.0",
"diff-sequences": "^25.2.6",
"jest-get-type": "^25.2.6",
"pretty-format": "^25.5.0"
}
},
"jest-matcher-utils": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz",
"integrity": "sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==",
"dev": true,
"requires": {
"chalk": "^3.0.0",
"jest-diff": "^25.5.0",
"jest-get-type": "^25.2.6",
"pretty-format": "^25.5.0"
}
},
"jest-message-util": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-25.5.0.tgz",
"integrity": "sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.0.0",
"@jest/types": "^25.5.0",
"@types/stack-utils": "^1.0.1",
"chalk": "^3.0.0",
"graceful-fs": "^4.2.4",
"micromatch": "^4.0.2",
"slash": "^3.0.0",
"stack-utils": "^1.0.1"
}
},
"pretty-format": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz",
"integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==",
"dev": true,
"requires": {
"@jest/types": "^25.5.0",
"ansi-regex": "^5.0.0",
"ansi-styles": "^4.0.0",
"react-is": "^16.12.0"
}
}
}
},
@@ -795,16 +723,16 @@
}
},
"@jest/test-sequencer": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.5.1.tgz",
"integrity": "sha512-XcnGwXFfs194AKO3M8xRsDLwo72LzuLuhOjd9e7AaBe5kEZk8fbGRxE7pQSqHyL49xV/NCCXUtBJ9lDqt1NLnw==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.5.2.tgz",
"integrity": "sha512-spQjGJ+QTjqB2NcZclkEpStF4uXxfpMfGAsW12dtxfjR9nsxTyTEYt8JUtrpxfYk8R1iTbcwkayekxZPB2MEiw==",
"dev": true,
"requires": {
"@jest/test-result": "^25.5.0",
"graceful-fs": "^4.2.4",
"jest-haste-map": "^25.5.1",
"jest-runner": "^25.5.1",
"jest-runtime": "^25.5.1"
"jest-runner": "^25.5.2",
"jest-runtime": "^25.5.2"
},
"dependencies": {
"graceful-fs": {
@@ -4268,14 +4196,14 @@
}
},
"jest": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest/-/jest-25.5.1.tgz",
"integrity": "sha512-8ouk/Av1maBODIC17GNZiIYc61SSWMds5d7HtPMXtz1CguqE+OXh4Ma2O8UvqZ/yTvYInhVKD2xVEa+VewjErQ==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest/-/jest-25.5.2.tgz",
"integrity": "sha512-uJwrQNpNwhlP4SX3lpvjc5ucOULeWUCQCfrREqvQW5phAy04q5lQPsGM6Z0T1Psdnuf9CkycpoNEL6O3FMGcsg==",
"dev": true,
"requires": {
"@jest/core": "^25.5.1",
"@jest/core": "^25.5.2",
"import-local": "^3.0.2",
"jest-cli": "^25.5.1"
"jest-cli": "^25.5.2"
},
"dependencies": {
"@jest/types": {
@@ -4297,12 +4225,12 @@
"dev": true
},
"jest-cli": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.5.1.tgz",
"integrity": "sha512-zXbztzrZEPnqHNHr4A/PELE+fZDB8zcWfNKV11YDzXphkaSztjsX2cFtkx5bcW3Ya23JRzUw6KcaIgccLXAnSg==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.5.2.tgz",
"integrity": "sha512-jbOJ4oOIJptg5mjNQZWyHkv33sXCIFT2UnkYwlZvyVU/0nz5nmIlIx57iTgHkmeRBp1VkK2qPZhjCDwHmxNKgA==",
"dev": true,
"requires": {
"@jest/core": "^25.5.1",
"@jest/core": "^25.5.2",
"@jest/test-result": "^25.5.0",
"@jest/types": "^25.5.0",
"chalk": "^3.0.0",
@@ -4310,7 +4238,7 @@
"graceful-fs": "^4.2.4",
"import-local": "^3.0.2",
"is-ci": "^2.0.0",
"jest-config": "^25.5.1",
"jest-config": "^25.5.2",
"jest-util": "^25.5.0",
"jest-validate": "^25.5.0",
"prompts": "^2.0.1",
@@ -4435,9 +4363,9 @@
}
},
"jest-circus": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-25.5.1.tgz",
"integrity": "sha512-eVRyGIoYFy198ngvZBlZ5i9G+WUxMyCEW62tydCDBqp+X39IgSLBkMRIwtpVvS5f9+aSmpQ4tsSEcpvoUTqzeA==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-25.5.2.tgz",
"integrity": "sha512-sSgIy+Jkdhx/2VMHOZNQDhRMPWG3MXk8scqsAM9LgK7prYdPvp8x3HYlsjB50dv2sRNItKbngYXP3/xsCNp0QA==",
"dev": true,
"requires": {
"@babel/traverse": "^7.1.0",
@@ -4451,7 +4379,7 @@
"jest-each": "^25.5.0",
"jest-matcher-utils": "^25.5.0",
"jest-message-util": "^25.5.0",
"jest-runtime": "^25.5.1",
"jest-runtime": "^25.5.2",
"jest-snapshot": "^25.5.1",
"jest-util": "^25.5.0",
"pretty-format": "^25.5.0",
@@ -4459,41 +4387,28 @@
"throat": "^5.0.0"
},
"dependencies": {
"@jest/globals": {
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/@jest/globals/-/globals-25.5.2.tgz",
"integrity": "sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==",
"dev": true,
"requires": {
"@jest/environment": "^25.5.0",
"@jest/types": "^25.5.0",
"expect": "^25.5.0"
}
},
"@jest/test-sequencer": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.5.1.tgz",
"integrity": "sha512-XcnGwXFfs194AKO3M8xRsDLwo72LzuLuhOjd9e7AaBe5kEZk8fbGRxE7pQSqHyL49xV/NCCXUtBJ9lDqt1NLnw==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.5.2.tgz",
"integrity": "sha512-spQjGJ+QTjqB2NcZclkEpStF4uXxfpMfGAsW12dtxfjR9nsxTyTEYt8JUtrpxfYk8R1iTbcwkayekxZPB2MEiw==",
"dev": true,
"requires": {
"@jest/test-result": "^25.5.0",
"graceful-fs": "^4.2.4",
"jest-haste-map": "^25.5.1",
"jest-runner": "^25.5.1",
"jest-runtime": "^25.5.1"
}
},
"@jest/transform": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/@jest/transform/-/transform-25.5.1.tgz",
"integrity": "sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==",
"dev": true,
"requires": {
"@babel/core": "^7.1.0",
"@jest/types": "^25.5.0",
"babel-plugin-istanbul": "^6.0.0",
"chalk": "^3.0.0",
"convert-source-map": "^1.4.0",
"fast-json-stable-stringify": "^2.0.0",
"graceful-fs": "^4.2.4",
"jest-haste-map": "^25.5.1",
"jest-regex-util": "^25.2.6",
"jest-util": "^25.5.0",
"micromatch": "^4.0.2",
"pirates": "^4.0.1",
"realpath-native": "^2.0.0",
"slash": "^3.0.0",
"source-map": "^0.6.1",
"write-file-atomic": "^3.0.0"
"jest-runner": "^25.5.2",
"jest-runtime": "^25.5.2"
}
},
"@jest/types": {
@@ -4508,22 +4423,6 @@
"chalk": "^3.0.0"
}
},
"babel-jest": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-25.5.1.tgz",
"integrity": "sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==",
"dev": true,
"requires": {
"@jest/transform": "^25.5.1",
"@jest/types": "^25.5.0",
"@types/babel__core": "^7.1.7",
"babel-plugin-istanbul": "^6.0.0",
"babel-preset-jest": "^25.5.0",
"chalk": "^3.0.0",
"graceful-fs": "^4.2.4",
"slash": "^3.0.0"
}
},
"graceful-fs": {
"version": "4.2.4",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
@@ -4531,13 +4430,13 @@
"dev": true
},
"jest-config": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-config/-/jest-config-25.5.1.tgz",
"integrity": "sha512-doUA9VEge7u28PvZNe7qkqG/NUAAObqLv8faMsaEiY2koZFtSTtcwCRoQQXsBU6w3lRRTOSg4LLchZERZLbOfA==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-config/-/jest-config-25.5.2.tgz",
"integrity": "sha512-6KVTvhJYyXQVFMDxMCxqf9IgdI0dhdaIKR9WN9U+w3xcvNEWCgwzK5LaSx6hvthgh/sukJb3bC4jMnIUXkWu+A==",
"dev": true,
"requires": {
"@babel/core": "^7.1.0",
"@jest/test-sequencer": "^25.5.1",
"@jest/test-sequencer": "^25.5.2",
"@jest/types": "^25.5.0",
"babel-jest": "^25.5.1",
"chalk": "^3.0.0",
@@ -4547,7 +4446,7 @@
"jest-environment-jsdom": "^25.5.0",
"jest-environment-node": "^25.5.0",
"jest-get-type": "^25.2.6",
"jest-jasmine2": "^25.5.1",
"jest-jasmine2": "^25.5.2",
"jest-regex-util": "^25.2.6",
"jest-resolve": "^25.5.1",
"jest-util": "^25.5.0",
@@ -4557,43 +4456,10 @@
"realpath-native": "^2.0.0"
}
},
"jest-diff": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.5.0.tgz",
"integrity": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==",
"dev": true,
"requires": {
"chalk": "^3.0.0",
"diff-sequences": "^25.2.6",
"jest-get-type": "^25.2.6",
"pretty-format": "^25.5.0"
}
},
"jest-haste-map": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-25.5.1.tgz",
"integrity": "sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ==",
"dev": true,
"requires": {
"@jest/types": "^25.5.0",
"@types/graceful-fs": "^4.1.2",
"anymatch": "^3.0.3",
"fb-watchman": "^2.0.0",
"fsevents": "^2.1.2",
"graceful-fs": "^4.2.4",
"jest-serializer": "^25.5.0",
"jest-util": "^25.5.0",
"jest-worker": "^25.5.0",
"micromatch": "^4.0.2",
"sane": "^4.0.3",
"walker": "^1.0.7",
"which": "^2.0.2"
}
},
"jest-jasmine2": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-25.5.1.tgz",
"integrity": "sha512-CydSULT9iqLX55OofjjtinYWHlC1HT3FijkelOZzUPwq2EN8aNAAYGdyaKjXEHJfhKmVD531GxA2F4q1Phmaxw==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-25.5.2.tgz",
"integrity": "sha512-wRtHAy97F4hafJgnh5CwI/N1tDo7z+urteQAyr3rjK7X3TZWX5hSV4cO7WIBKLDV0kPICCmsGiNYs1caeHD/sQ==",
"dev": true,
"requires": {
"@babel/traverse": "^7.1.0",
@@ -4608,34 +4474,17 @@
"jest-each": "^25.5.0",
"jest-matcher-utils": "^25.5.0",
"jest-message-util": "^25.5.0",
"jest-runtime": "^25.5.1",
"jest-runtime": "^25.5.2",
"jest-snapshot": "^25.5.1",
"jest-util": "^25.5.0",
"pretty-format": "^25.5.0",
"throat": "^5.0.0"
}
},
"jest-resolve": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-25.5.1.tgz",
"integrity": "sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==",
"dev": true,
"requires": {
"@jest/types": "^25.5.0",
"browser-resolve": "^1.11.3",
"chalk": "^3.0.0",
"graceful-fs": "^4.2.4",
"jest-pnp-resolver": "^1.2.1",
"read-pkg-up": "^7.0.1",
"realpath-native": "^2.0.0",
"resolve": "^1.17.0",
"slash": "^3.0.0"
}
},
"jest-runner": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-25.5.1.tgz",
"integrity": "sha512-CBYKwUENc5ya1sJcFPyp5sMl3Otbj9lfulVP15gcLPsfRqk5cA72Qhm3Y5hdULs6WvsP8ATdihYPMzrESJJHFw==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-25.5.2.tgz",
"integrity": "sha512-GvaM0AWSfyer46BEranPSmKoNNW9RqLGnjKftE6I5Ia6cfjdHHeTHAus7Mh9PdjWzGqrXsLSGdErX+4wMvN3rQ==",
"dev": true,
"requires": {
"@jest/console": "^25.5.0",
@@ -4645,14 +4494,14 @@
"chalk": "^3.0.0",
"exit": "^0.1.2",
"graceful-fs": "^4.2.4",
"jest-config": "^25.5.1",
"jest-config": "^25.5.2",
"jest-docblock": "^25.3.0",
"jest-haste-map": "^25.5.1",
"jest-jasmine2": "^25.5.1",
"jest-jasmine2": "^25.5.2",
"jest-leak-detector": "^25.5.0",
"jest-message-util": "^25.5.0",
"jest-resolve": "^25.5.1",
"jest-runtime": "^25.5.1",
"jest-runtime": "^25.5.2",
"jest-util": "^25.5.0",
"jest-worker": "^25.5.0",
"source-map-support": "^0.5.6",
@@ -4660,14 +4509,14 @@
}
},
"jest-runtime": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-25.5.1.tgz",
"integrity": "sha512-C8neT+c1k/Sr0HlsLJqZgQmmBI5Plyh3FHfO5VF/K670/V/gAN375WQwwIzbTevK3nbOl7NzuKxS2A3Ps5SLgg==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-25.5.2.tgz",
"integrity": "sha512-UQTPBnE73qpGMKAXYB2agoC+6hMyT3dWXVL+cYibCFRm0tx2A+0+8wceoivRCtxQGaQr52c+qMRIOIRqmhAgHQ==",
"dev": true,
"requires": {
"@jest/console": "^25.5.0",
"@jest/environment": "^25.5.0",
"@jest/globals": "^25.5.0",
"@jest/globals": "^25.5.2",
"@jest/source-map": "^25.5.0",
"@jest/test-result": "^25.5.0",
"@jest/transform": "^25.5.1",
@@ -4678,7 +4527,7 @@
"exit": "^0.1.2",
"glob": "^7.1.3",
"graceful-fs": "^4.2.4",
"jest-config": "^25.5.1",
"jest-config": "^25.5.2",
"jest-haste-map": "^25.5.1",
"jest-message-util": "^25.5.0",
"jest-mock": "^25.5.0",
@@ -4693,29 +4542,6 @@
"yargs": "^15.3.1"
}
},
"jest-snapshot": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-25.5.1.tgz",
"integrity": "sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==",
"dev": true,
"requires": {
"@babel/types": "^7.0.0",
"@jest/types": "^25.5.0",
"@types/prettier": "^1.19.0",
"chalk": "^3.0.0",
"expect": "^25.5.0",
"graceful-fs": "^4.2.4",
"jest-diff": "^25.5.0",
"jest-get-type": "^25.2.6",
"jest-matcher-utils": "^25.5.0",
"jest-message-util": "^25.5.0",
"jest-resolve": "^25.5.1",
"make-dir": "^3.0.0",
"natural-compare": "^1.4.0",
"pretty-format": "^25.5.0",
"semver": "^6.3.0"
}
},
"pretty-format": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz",
@@ -4727,72 +4553,17 @@
"ansi-styles": "^4.0.0",
"react-is": "^16.12.0"
}
},
"read-pkg": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
"integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
"dev": true,
"requires": {
"@types/normalize-package-data": "^2.4.0",
"normalize-package-data": "^2.5.0",
"parse-json": "^5.0.0",
"type-fest": "^0.6.0"
},
"dependencies": {
"type-fest": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
"integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
"dev": true
}
}
},
"read-pkg-up": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
"integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
"dev": true,
"requires": {
"find-up": "^4.1.0",
"read-pkg": "^5.2.0",
"type-fest": "^0.8.1"
}
},
"resolve": {
"version": "1.17.0",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz",
"integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==",
"dev": true,
"requires": {
"path-parse": "^1.0.6"
}
},
"semver": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"dev": true
},
"which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dev": true,
"requires": {
"isexe": "^2.0.0"
}
}
}
},
"jest-config": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-config/-/jest-config-25.5.1.tgz",
"integrity": "sha512-doUA9VEge7u28PvZNe7qkqG/NUAAObqLv8faMsaEiY2koZFtSTtcwCRoQQXsBU6w3lRRTOSg4LLchZERZLbOfA==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-config/-/jest-config-25.5.2.tgz",
"integrity": "sha512-6KVTvhJYyXQVFMDxMCxqf9IgdI0dhdaIKR9WN9U+w3xcvNEWCgwzK5LaSx6hvthgh/sukJb3bC4jMnIUXkWu+A==",
"dev": true,
"requires": {
"@babel/core": "^7.1.0",
"@jest/test-sequencer": "^25.5.1",
"@jest/test-sequencer": "^25.5.2",
"@jest/types": "^25.5.0",
"babel-jest": "^25.5.1",
"chalk": "^3.0.0",
@@ -4802,7 +4573,7 @@
"jest-environment-jsdom": "^25.5.0",
"jest-environment-node": "^25.5.0",
"jest-get-type": "^25.2.6",
"jest-jasmine2": "^25.5.1",
"jest-jasmine2": "^25.5.2",
"jest-regex-util": "^25.2.6",
"jest-resolve": "^25.5.1",
"jest-util": "^25.5.0",
@@ -5080,9 +4851,9 @@
}
},
"jest-jasmine2": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-25.5.1.tgz",
"integrity": "sha512-CydSULT9iqLX55OofjjtinYWHlC1HT3FijkelOZzUPwq2EN8aNAAYGdyaKjXEHJfhKmVD531GxA2F4q1Phmaxw==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-25.5.2.tgz",
"integrity": "sha512-wRtHAy97F4hafJgnh5CwI/N1tDo7z+urteQAyr3rjK7X3TZWX5hSV4cO7WIBKLDV0kPICCmsGiNYs1caeHD/sQ==",
"dev": true,
"requires": {
"@babel/traverse": "^7.1.0",
@@ -5097,7 +4868,7 @@
"jest-each": "^25.5.0",
"jest-matcher-utils": "^25.5.0",
"jest-message-util": "^25.5.0",
"jest-runtime": "^25.5.1",
"jest-runtime": "^25.5.2",
"jest-snapshot": "^25.5.1",
"jest-util": "^25.5.0",
"pretty-format": "^25.5.0",
@@ -5365,9 +5136,9 @@
}
},
"jest-resolve-dependencies": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-25.5.1.tgz",
"integrity": "sha512-0lJr2rg1dfruCAUK9hk9RAnQchj36W7Vg2X+81McZI3TTihJsa5Mwa8u4eycxRKrZjP8lGMsO+2+z49H6qA4Ug==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-25.5.2.tgz",
"integrity": "sha512-4xlPp6/SFFZj7g7WkhoKEEWsYqmAK6WcmFFRfDJ0K4T2f/MCJgFEPqv1F88ro6ZJdpOti08CxGku4gBwau/RjQ==",
"dev": true,
"requires": {
"@jest/types": "^25.5.0",
@@ -5390,9 +5161,9 @@
}
},
"jest-runner": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-25.5.1.tgz",
"integrity": "sha512-CBYKwUENc5ya1sJcFPyp5sMl3Otbj9lfulVP15gcLPsfRqk5cA72Qhm3Y5hdULs6WvsP8ATdihYPMzrESJJHFw==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-25.5.2.tgz",
"integrity": "sha512-GvaM0AWSfyer46BEranPSmKoNNW9RqLGnjKftE6I5Ia6cfjdHHeTHAus7Mh9PdjWzGqrXsLSGdErX+4wMvN3rQ==",
"dev": true,
"requires": {
"@jest/console": "^25.5.0",
@@ -5402,14 +5173,14 @@
"chalk": "^3.0.0",
"exit": "^0.1.2",
"graceful-fs": "^4.2.4",
"jest-config": "^25.5.1",
"jest-config": "^25.5.2",
"jest-docblock": "^25.3.0",
"jest-haste-map": "^25.5.1",
"jest-jasmine2": "^25.5.1",
"jest-jasmine2": "^25.5.2",
"jest-leak-detector": "^25.5.0",
"jest-message-util": "^25.5.0",
"jest-resolve": "^25.5.1",
"jest-runtime": "^25.5.1",
"jest-runtime": "^25.5.2",
"jest-util": "^25.5.0",
"jest-worker": "^25.5.0",
"source-map-support": "^0.5.6",
@@ -5437,14 +5208,14 @@
}
},
"jest-runtime": {
"version": "25.5.1",
"resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-25.5.1.tgz",
"integrity": "sha512-C8neT+c1k/Sr0HlsLJqZgQmmBI5Plyh3FHfO5VF/K670/V/gAN375WQwwIzbTevK3nbOl7NzuKxS2A3Ps5SLgg==",
"version": "25.5.2",
"resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-25.5.2.tgz",
"integrity": "sha512-UQTPBnE73qpGMKAXYB2agoC+6hMyT3dWXVL+cYibCFRm0tx2A+0+8wceoivRCtxQGaQr52c+qMRIOIRqmhAgHQ==",
"dev": true,
"requires": {
"@jest/console": "^25.5.0",
"@jest/environment": "^25.5.0",
"@jest/globals": "^25.5.0",
"@jest/globals": "^25.5.2",
"@jest/source-map": "^25.5.0",
"@jest/test-result": "^25.5.0",
"@jest/transform": "^25.5.1",
@@ -5455,7 +5226,7 @@
"exit": "^0.1.2",
"glob": "^7.1.3",
"graceful-fs": "^4.2.4",
"jest-config": "^25.5.1",
"jest-config": "^25.5.2",
"jest-haste-map": "^25.5.1",
"jest-message-util": "^25.5.0",
"jest-mock": "^25.5.0",

View File

@@ -1,6 +1,6 @@
{
"name": "actions-github-pages",
"version": "3.5.9",
"version": "3.5.10",
"description": "GitHub Actions for GitHub Pages",
"main": "lib/index.js",
"engines": {
@@ -69,8 +69,8 @@
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"husky": "^4.2.5",
"jest": "^25.5.1",
"jest-circus": "^25.5.1",
"jest": "^25.5.2",
"jest-circus": "^25.5.2",
"js-yaml": "^3.13.1",
"lint-staged": "^10.2.0",
"prettier": "2.0.5",