Skip to content

Commit f3df445

Browse files
authored
Changes to release create-kpt-functions 0.17.0 (#157)
* Changes to release create-kpt-functions 0.17.0 * Keep node 12 and 14 in matrix
1 parent 38a9acd commit f3df445

File tree

8 files changed

+192
-159
lines changed

8 files changed

+192
-159
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
platform: [ubuntu-latest, macos-latest]
30-
node-version: [12.x]
30+
node-version: [12.x, 14.x]
3131
package: [kpt-functions, create-kpt-functions, init-package, hello-world, demo-functions]
3232
runs-on: ${{ matrix.platform }}
3333
steps:
@@ -84,7 +84,7 @@ jobs:
8484
strategy:
8585
matrix:
8686
platform: [ubuntu-latest, macos-latest]
87-
node-version: [12.x]
87+
node-version: [12.x, 14.x]
8888
runs-on: ${{ matrix.platform }}
8989
steps:
9090
- uses: actions/checkout@v1

.github/workflows/release-create-kpt-functions.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ jobs:
99
release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Use Node.js 12.x
12+
- uses: actions/checkout@v1
13+
- name: Use Node.js 14.x
1314
uses: actions/setup-node@v1
1415
with:
15-
node-version: 12.x
16+
node-version: 14.x
1617
registry-url: 'https://wombat-dressing-room.appspot.com'
1718
- name: Install, test
1819
run: |

.github/workflows/release-demo-functions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [12.x]
13+
node-version: [14.x]
1414
steps:
1515
- uses: actions/checkout@v1
1616
- name: Set up gcloud

.github/workflows/release-kpt-functions.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v1
13-
- name: Use Node.js 12.x
13+
- name: Use Node.js 14.x
1414
uses: actions/setup-node@v1
1515
with:
16-
node-version: 12.x
16+
node-version: 14.x
1717
registry-url: 'https://wombat-dressing-room.appspot.com'
1818
- name: Install, test
1919
run: |

0 commit comments

Comments
 (0)