Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6475c95

Browse files
author
Jackson Maxfield Brown
authoredApr 7, 2022
admin/upgrade-deps-and-build-eng (#84)
* Upgrade cdp-frontend to 3.0.8 and node to v16 * Upgrade cdp-backend to v3.0.12
1 parent a490606 commit 6475c95

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed
 

‎.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Node
2727
uses: actions/setup-node@v1
2828
with:
29-
node-version: '12.x'
29+
node-version: '16.x'
3030

3131
# Run cookiecutter
3232
- name: Install Cookiecutter

‎.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Node
2121
uses: actions/setup-node@v1
2222
with:
23-
node-version: '12.x'
23+
node-version: '16.x'
2424

2525
# Run cookiecutter
2626
- name: Install Cookiecutter

‎{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/build-main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/checkout@v2
4444
- uses: actions/setup-node@v1
4545
with:
46-
node-version: '12.x'
46+
node-version: '16.x'
4747

4848
- name: Install Web App Dependencies
4949
run: |

‎{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/check-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/checkout@v2
3838
- uses: actions/setup-node@v1
3939
with:
40-
node-version: '12.x'
40+
node-version: '16.x'
4141

4242
- name: Install Web App Dependencies
4343
run: |

‎{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/deploy-web.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Node
2323
uses: actions/setup-node@v1
2424
with:
25-
node-version: '12.x'
25+
node-version: '16.x'
2626

2727
# Build Web
2828
- name: Install Web App Dependencies
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
cdp-backend[infrastructure]==3.0.11
1+
cdp-backend[infrastructure]==3.0.12
22
pulumi

‎{{ cookiecutter.hosting_github_repo_name }}/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
]
1818

1919
requirements = [
20-
"cdp-backend[pipeline]==3.0.11",
20+
"cdp-backend[pipeline]==3.0.12",
2121
]
2222

2323
extra_requirements = {

‎{{ cookiecutter.hosting_github_repo_name }}/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"deploy": "gh-pages -d build"
1111
},
1212
"dependencies": {
13-
"@councildataproject/cdp-frontend": "3.0.7",
13+
"@councildataproject/cdp-frontend": "3.0.8",
1414
"react": "^16.13.1",
1515
"react-dom": "^16.13.1"
1616
},

0 commit comments

Comments
 (0)
Please sign in to comment.