Skip to content

Commit

Permalink
🔖 Release v1.17.5 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
BetaHuhnBot committed Feb 28, 2022
1 parent 65cbfb9 commit 05135b7
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 56 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [v1.17.5] - 2022-02-28

[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))

### Dependency updates

- [`af3ff1b`](https://github.com/betahuhn/repo-file-sync-action/commit/af3ff1b) Bump fs-extra from 10.0.0 to 10.0.1

## [v1.17.4] - 2022-02-19

[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))
Expand Down
82 changes: 28 additions & 54 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7723,7 +7723,7 @@ return Promise;

/***/ }),

/***/ 3338:
/***/ 9618:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";
Expand Down Expand Up @@ -7895,19 +7895,6 @@ function copyLink (resolvedSrc, dest) {
module.exports = copySync


/***/ }),

/***/ 1135:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";


module.exports = {
copySync: __nccwpck_require__(3338)
}


/***/ }),

/***/ 8834:
Expand Down Expand Up @@ -8158,7 +8145,8 @@ module.exports = copy

const u = (__nccwpck_require__(1463).fromCallback)
module.exports = {
copy: u(__nccwpck_require__(8834))
copy: u(__nccwpck_require__(8834)),
copySync: __nccwpck_require__(9618)
}


Expand Down Expand Up @@ -8294,26 +8282,26 @@ module.exports = {
"use strict";


const file = __nccwpck_require__(2164)
const link = __nccwpck_require__(3797)
const symlink = __nccwpck_require__(2549)
const { createFile, createFileSync } = __nccwpck_require__(2164)
const { createLink, createLinkSync } = __nccwpck_require__(3797)
const { createSymlink, createSymlinkSync } = __nccwpck_require__(2549)

module.exports = {
// file
createFile: file.createFile,
createFileSync: file.createFileSync,
ensureFile: file.createFile,
ensureFileSync: file.createFileSync,
createFile,
createFileSync,
ensureFile: createFile,
ensureFileSync: createFileSync,
// link
createLink: link.createLink,
createLinkSync: link.createLinkSync,
ensureLink: link.createLink,
ensureLinkSync: link.createLinkSync,
createLink,
createLinkSync,
ensureLink: createLink,
ensureLinkSync: createLinkSync,
// symlink
createSymlink: symlink.createSymlink,
createSymlinkSync: symlink.createSymlinkSync,
ensureSymlink: symlink.createSymlink,
ensureSymlinkSync: symlink.createSymlinkSync
createSymlink,
createSymlinkSync,
ensureSymlink: createSymlink,
ensureSymlinkSync: createSymlinkSync
}


Expand Down Expand Up @@ -8764,15 +8752,13 @@ module.exports = {
// Export promiseified graceful-fs:
...__nccwpck_require__(1176),
// Export extra methods:
...__nccwpck_require__(1135),
...__nccwpck_require__(1335),
...__nccwpck_require__(6970),
...__nccwpck_require__(55),
...__nccwpck_require__(213),
...__nccwpck_require__(8605),
...__nccwpck_require__(9665),
...__nccwpck_require__(1497),
...__nccwpck_require__(6570),
...__nccwpck_require__(1832),
...__nccwpck_require__(3835),
...__nccwpck_require__(7357)
}
Expand Down Expand Up @@ -8830,7 +8816,7 @@ module.exports = {


const { stringify } = __nccwpck_require__(5902)
const { outputFileSync } = __nccwpck_require__(6570)
const { outputFileSync } = __nccwpck_require__(1832)

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


const { stringify } = __nccwpck_require__(5902)
const { outputFile } = __nccwpck_require__(6570)
const { outputFile } = __nccwpck_require__(1832)

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

/***/ }),

/***/ 9665:
/***/ 1497:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";


const u = (__nccwpck_require__(1463).fromCallback)
module.exports = {
moveSync: __nccwpck_require__(6445)
move: u(__nccwpck_require__(2231)),
moveSync: __nccwpck_require__(2047)
}


/***/ }),

/***/ 6445:
/***/ 2047:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";


const fs = __nccwpck_require__(7758)
const path = __nccwpck_require__(1017)
const copySync = (__nccwpck_require__(1135).copySync)
const copySync = (__nccwpck_require__(1335).copySync)
const removeSync = (__nccwpck_require__(7357).removeSync)
const mkdirpSync = (__nccwpck_require__(8605).mkdirpSync)
const stat = __nccwpck_require__(3901)
Expand Down Expand Up @@ -9022,20 +9010,6 @@ function moveAcrossDevice (src, dest, overwrite) {
module.exports = moveSync


/***/ }),

/***/ 1497:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";


const u = (__nccwpck_require__(1463).fromCallback)
module.exports = {
move: u(__nccwpck_require__(2231))
}


/***/ }),

/***/ 2231:
Expand Down Expand Up @@ -9119,7 +9093,7 @@ module.exports = move

/***/ }),

/***/ 6570:
/***/ 1832:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "repo-file-sync-action",
"version": "1.17.4",
"version": "1.17.5",
"description": "GitHub Action to keep files like Action workflows or entire directories in sync between multiple repositories.",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit 05135b7

Please sign in to comment.