Skip to content

Commit 05135b7

Browse files
committed
🔖 Release v1.17.5 [skip ci]
1 parent 65cbfb9 commit 05135b7

File tree

4 files changed

+38
-56
lines changed

4 files changed

+38
-56
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [v1.17.5] - 2022-02-28
2+
3+
[Release notes](https://github.com/betahuhn/repo-file-sync-action/releases/tag/v1.17.5) · [Compare](https://github.com/betahuhn/repo-file-sync-action/compare/v1.17.4...v1.17.5) · [Tag](https://github.com/betahuhn/repo-file-sync-action/tree/v1.17.5) · Archive ([zip](https://github.com/betahuhn/repo-file-sync-action/archive/v1.17.5.zip) · [tar.gz](https://github.com/betahuhn/repo-file-sync-action/archive/v1.17.5.tar.gz))
4+
5+
### Dependency updates
6+
7+
- [`af3ff1b`](https://github.com/betahuhn/repo-file-sync-action/commit/af3ff1b) Bump fs-extra from 10.0.0 to 10.0.1
8+
19
## [v1.17.4] - 2022-02-19
210

311
[Release notes](https://github.com/betahuhn/repo-file-sync-action/releases/tag/v1.17.4) · [Compare](https://github.com/betahuhn/repo-file-sync-action/compare/v1.17.3...v1.17.4) · [Tag](https://github.com/betahuhn/repo-file-sync-action/tree/v1.17.4) · Archive ([zip](https://github.com/betahuhn/repo-file-sync-action/archive/v1.17.4.zip) · [tar.gz](https://github.com/betahuhn/repo-file-sync-action/archive/v1.17.4.tar.gz))

dist/index.js

+28-54
Original file line numberDiff line numberDiff line change
@@ -7723,7 +7723,7 @@ return Promise;
77237723

77247724
/***/ }),
77257725

7726-
/***/ 3338:
7726+
/***/ 9618:
77277727
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
77287728

77297729
"use strict";
@@ -7895,19 +7895,6 @@ function copyLink (resolvedSrc, dest) {
78957895
module.exports = copySync
78967896

78977897

7898-
/***/ }),
7899-
7900-
/***/ 1135:
7901-
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
7902-
7903-
"use strict";
7904-
7905-
7906-
module.exports = {
7907-
copySync: __nccwpck_require__(3338)
7908-
}
7909-
7910-
79117898
/***/ }),
79127899

79137900
/***/ 8834:
@@ -8158,7 +8145,8 @@ module.exports = copy
81588145

81598146
const u = (__nccwpck_require__(1463).fromCallback)
81608147
module.exports = {
8161-
copy: u(__nccwpck_require__(8834))
8148+
copy: u(__nccwpck_require__(8834)),
8149+
copySync: __nccwpck_require__(9618)
81628150
}
81638151

81648152

@@ -8294,26 +8282,26 @@ module.exports = {
82948282
"use strict";
82958283

82968284

8297-
const file = __nccwpck_require__(2164)
8298-
const link = __nccwpck_require__(3797)
8299-
const symlink = __nccwpck_require__(2549)
8285+
const { createFile, createFileSync } = __nccwpck_require__(2164)
8286+
const { createLink, createLinkSync } = __nccwpck_require__(3797)
8287+
const { createSymlink, createSymlinkSync } = __nccwpck_require__(2549)
83008288

83018289
module.exports = {
83028290
// file
8303-
createFile: file.createFile,
8304-
createFileSync: file.createFileSync,
8305-
ensureFile: file.createFile,
8306-
ensureFileSync: file.createFileSync,
8291+
createFile,
8292+
createFileSync,
8293+
ensureFile: createFile,
8294+
ensureFileSync: createFileSync,
83078295
// link
8308-
createLink: link.createLink,
8309-
createLinkSync: link.createLinkSync,
8310-
ensureLink: link.createLink,
8311-
ensureLinkSync: link.createLinkSync,
8296+
createLink,
8297+
createLinkSync,
8298+
ensureLink: createLink,
8299+
ensureLinkSync: createLinkSync,
83128300
// symlink
8313-
createSymlink: symlink.createSymlink,
8314-
createSymlinkSync: symlink.createSymlinkSync,
8315-
ensureSymlink: symlink.createSymlink,
8316-
ensureSymlinkSync: symlink.createSymlinkSync
8301+
createSymlink,
8302+
createSymlinkSync,
8303+
ensureSymlink: createSymlink,
8304+
ensureSymlinkSync: createSymlinkSync
83178305
}
83188306

83198307

@@ -8764,15 +8752,13 @@ module.exports = {
87648752
// Export promiseified graceful-fs:
87658753
...__nccwpck_require__(1176),
87668754
// Export extra methods:
8767-
...__nccwpck_require__(1135),
87688755
...__nccwpck_require__(1335),
87698756
...__nccwpck_require__(6970),
87708757
...__nccwpck_require__(55),
87718758
...__nccwpck_require__(213),
87728759
...__nccwpck_require__(8605),
8773-
...__nccwpck_require__(9665),
87748760
...__nccwpck_require__(1497),
8775-
...__nccwpck_require__(6570),
8761+
...__nccwpck_require__(1832),
87768762
...__nccwpck_require__(3835),
87778763
...__nccwpck_require__(7357)
87788764
}
@@ -8830,7 +8816,7 @@ module.exports = {
88308816

88318817

88328818
const { stringify } = __nccwpck_require__(5902)
8833-
const { outputFileSync } = __nccwpck_require__(6570)
8819+
const { outputFileSync } = __nccwpck_require__(1832)
88348820

88358821
function outputJsonSync (file, data, options) {
88368822
const str = stringify(data, options)
@@ -8850,7 +8836,7 @@ module.exports = outputJsonSync
88508836

88518837

88528838
const { stringify } = __nccwpck_require__(5902)
8853-
const { outputFile } = __nccwpck_require__(6570)
8839+
const { outputFile } = __nccwpck_require__(1832)
88548840

88558841
async function outputJson (file, data, options = {}) {
88568842
const str = stringify(data, options)
@@ -8949,28 +8935,30 @@ module.exports.checkPath = function checkPath (pth) {
89498935

89508936
/***/ }),
89518937

8952-
/***/ 9665:
8938+
/***/ 1497:
89538939
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
89548940

89558941
"use strict";
89568942

89578943

8944+
const u = (__nccwpck_require__(1463).fromCallback)
89588945
module.exports = {
8959-
moveSync: __nccwpck_require__(6445)
8946+
move: u(__nccwpck_require__(2231)),
8947+
moveSync: __nccwpck_require__(2047)
89608948
}
89618949

89628950

89638951
/***/ }),
89648952

8965-
/***/ 6445:
8953+
/***/ 2047:
89668954
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
89678955

89688956
"use strict";
89698957

89708958

89718959
const fs = __nccwpck_require__(7758)
89728960
const path = __nccwpck_require__(1017)
8973-
const copySync = (__nccwpck_require__(1135).copySync)
8961+
const copySync = (__nccwpck_require__(1335).copySync)
89748962
const removeSync = (__nccwpck_require__(7357).removeSync)
89758963
const mkdirpSync = (__nccwpck_require__(8605).mkdirpSync)
89768964
const stat = __nccwpck_require__(3901)
@@ -9022,20 +9010,6 @@ function moveAcrossDevice (src, dest, overwrite) {
90229010
module.exports = moveSync
90239011

90249012

9025-
/***/ }),
9026-
9027-
/***/ 1497:
9028-
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
9029-
9030-
"use strict";
9031-
9032-
9033-
const u = (__nccwpck_require__(1463).fromCallback)
9034-
module.exports = {
9035-
move: u(__nccwpck_require__(2231))
9036-
}
9037-
9038-
90399013
/***/ }),
90409014

90419015
/***/ 2231:
@@ -9119,7 +9093,7 @@ module.exports = move
91199093

91209094
/***/ }),
91219095

9122-
/***/ 6570:
9096+
/***/ 1832:
91239097
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
91249098

91259099
"use strict";

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "repo-file-sync-action",
3-
"version": "1.17.4",
3+
"version": "1.17.5",
44
"description": "GitHub Action to keep files like Action workflows or entire directories in sync between multiple repositories.",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)