@cocreate/cli 1.27.1 → 1.27.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,11 @@ jobs:
8
8
  runs-on: ubuntu-latest
9
9
  steps:
10
10
  - name: Checkout
11
- uses: actions/checkout@v2
11
+ uses: actions/checkout@v3
12
+ - name: setup nodejs
13
+ uses: actions/setup-node@v3
14
+ with:
15
+ node-version: 16
12
16
  - name: Jaid/action-sync-node-meta
13
17
  uses: jaid/action-sync-node-meta@v1.4.0
14
18
  with:
@@ -19,6 +23,10 @@ jobs:
19
23
  steps:
20
24
  - name: Checkout
21
25
  uses: actions/checkout@v3
26
+ - name: setup nodejs
27
+ uses: actions/setup-node@v3
28
+ with:
29
+ node-version: 16
22
30
  - name: Semantic Release
23
31
  uses: cycjimmy/semantic-release-action@v3
24
32
  id: semantic
@@ -37,7 +45,11 @@ jobs:
37
45
  runs-on: ubuntu-latest
38
46
  steps:
39
47
  - name: Checkout
40
- uses: actions/checkout@v2
48
+ uses: actions/checkout@v3
49
+ - name: setup nodejs
50
+ uses: actions/setup-node@v3
51
+ with:
52
+ node-version: 16
41
53
 
42
54
  - name: update documentation
43
55
  uses: CoCreate-app/CoCreate-docs@master
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.27.2](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.27.1...v1.27.2) (2023-04-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * node version 16 in build action ([7e260a8](https://github.com/CoCreate-app/CoCreate-cli/commit/7e260a8072aad0478d0ce88458bf35373a5445e0))
7
+
1
8
  ## [1.27.1](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.27.0...v1.27.1) (2023-04-24)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/cli",
3
- "version": "1.27.1",
3
+ "version": "1.27.2",
4
4
  "description": "Polyrepo management bash CLI tool. Run all git commands and yarn commands on multiple repositories. Also includes a few custom macros for cloning, installing, etc.",
5
5
  "keywords": [
6
6
  "cli",
package/src/coc.js CHANGED
File without changes
@@ -30,7 +30,11 @@ jobs:
30
30
  runs-on: ubuntu-latest
31
31
  steps:
32
32
  - name: Checkout
33
- uses: actions/checkout@v2
33
+ uses: actions/checkout@v3
34
+ - name: setup nodejs
35
+ uses: actions/setup-node@v3
36
+ with:
37
+ node-version: 16
34
38
  - name: Jaid/action-sync-node-meta
35
39
  uses: jaid/action-sync-node-meta@v1.4.0
36
40
  with:
@@ -41,6 +45,10 @@ jobs:
41
45
  steps:
42
46
  - name: Checkout
43
47
  uses: actions/checkout@v3
48
+ - name: setup nodejs
49
+ uses: actions/setup-node@v3
50
+ with:
51
+ node-version: 16
44
52
  - name: Semantic Release
45
53
  uses: cycjimmy/semantic-release-action@v3
46
54
  id: semantic
@@ -100,7 +108,11 @@ jobs:
100
108
  runs-on: ubuntu-latest
101
109
  steps:
102
110
  - name: Checkout
103
- uses: actions/checkout@v2
111
+ uses: actions/checkout@v3
112
+ - name: setup nodejs
113
+ uses: actions/setup-node@v3
114
+ with:
115
+ node-version: 16
104
116
 
105
117
  - name: update documentation
106
118
  uses: CoCreate-app/CoCreate-docs@master