Skip to content

Commit 83c4c30

Browse files
4.1.9 (#973)
* Release 4.1.8 📣 * Bump @types/node from 17.0.0 to 17.0.1 (#955) * Bump @types/node from 17.0.1 to 17.0.2 (#957) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 17.0.1 to 17.0.2. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/node from 17.0.2 to 17.0.4 (#958) * Bump @types/node from 17.0.4 to 17.0.5 (#961) * Bump eslint-plugin-jest from 25.3.0 to 25.3.2 (#966) * Bump eslint-plugin-jest from 25.3.2 to 25.3.3 (#967) * Bump @types/jest from 27.0.3 to 27.4.0 (#968) * Bump eslint-plugin-jest from 25.3.3 to 25.3.4 (#969) * Bump @types/node from 17.0.5 to 17.0.7 (#970) * Bump @types/node from 17.0.7 to 17.0.8 (#971) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 17.0.7 to 17.0.8. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump jest-circus from 27.4.5 to 27.4.6 (#972) Bumps [jest-circus](https://github.com/facebook/jest/tree/HEAD/packages/jest-circus) from 27.4.5 to 27.4.6. - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/jest/commits/v27.4.6/packages/jest-circus) --- updated-dependencies: - dependency-name: jest-circus dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update README.md Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent da91e73 commit 83c4c30

File tree

3 files changed

+403
-217
lines changed

3 files changed

+403
-217
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
npm run build
6161
6262
- name: Deploy 🚀
63-
uses: JamesIves/[email protected].7
63+
uses: JamesIves/[email protected].9
6464
with:
6565
branch: gh-pages # The branch the action should deploy to.
6666
folder: build # The folder the action should deploy.
@@ -178,7 +178,7 @@ With this configured you can then set the `ssh-key` part of the action to your p
178178

179179
```yml
180180
- name: Deploy 🚀
181-
uses: JamesIves/[email protected].7
181+
uses: JamesIves/[email protected].9
182182
with:
183183
branch: gh-pages
184184
folder: site
@@ -207,7 +207,7 @@ jobs:
207207
npm run build
208208
209209
- name: Deploy 🚀
210-
uses: JamesIves/[email protected].7
210+
uses: JamesIves/[email protected].9
211211
with:
212212
branch: gh-pages
213213
folder: build
@@ -274,7 +274,7 @@ jobs:
274274
name: site
275275
276276
- name: Deploy 🚀
277-
uses: JamesIves/[email protected].7
277+
uses: JamesIves/[email protected].9
278278
with:
279279
branch: gh-pages
280280
folder: 'site' # The deployment folder should match the name of the artifact. Even though our project builds into the 'build' folder the artifact name of 'site' must be placed here.
@@ -295,7 +295,7 @@ If you use a [container](https://help.github.com/en/actions/automating-your-work
295295
apt-get update && apt-get install -y rsync
296296
297297
- name: Deploy 🚀
298-
uses: JamesIves/[email protected].7
298+
uses: JamesIves/[email protected].9
299299
```
300300

301301
---
@@ -326,7 +326,7 @@ jobs:
326326
npm run build
327327
328328
- name: Deploy 🚀
329-
uses: JamesIves/[email protected].7
329+
uses: JamesIves/[email protected].9
330330
with:
331331
branch: gh-pages
332332
folder: build

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@jamesives/github-pages-deploy-action",
33
"description": "GitHub action for building a project and deploying it to GitHub pages.",
44
"author": "James Ives <[email protected]> (https://jamesiv.es)",
5-
"version": "4.1.7",
5+
"version": "4.1.8",
66
"license": "MIT",
77
"main": "lib/lib.js",
88
"types": "lib/lib.d.ts",
@@ -39,16 +39,16 @@
3939
"@actions/io": "1.1.1"
4040
},
4141
"devDependencies": {
42-
"@types/jest": "27.0.3",
43-
"@types/node": "17.0.0",
42+
"@types/jest": "27.4.0",
43+
"@types/node": "17.0.8",
4444
"@typescript-eslint/eslint-plugin": "4.33.0",
4545
"@typescript-eslint/parser": "4.33.0",
4646
"eslint": "7.32.0",
4747
"eslint-config-prettier": "8.3.0",
48-
"eslint-plugin-jest": "25.3.0",
48+
"eslint-plugin-jest": "25.3.4",
4949
"eslint-plugin-prettier": "4.0.0",
5050
"jest": "26.6.3",
51-
"jest-circus": "27.4.5",
51+
"jest-circus": "27.4.6",
5252
"prettier": "2.5.1",
5353
"rimraf": "3.0.2",
5454
"ts-jest": "26.5.6",

0 commit comments

Comments
 (0)