Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflow node version to v20 #1053

Merged
merged 3 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached dependencies
id: cache-node-modules
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached dependencies
uses: actions/cache@v3
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached build
uses: actions/cache@v3
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached build
uses: actions/cache@v3
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached dependencies
uses: actions/cache@v3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached dependencies
uses: actions/cache@v3
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached dependencies
uses: actions/cache@v3
Expand All @@ -113,7 +113,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached dependencies
uses: actions/cache@v3
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached build
uses: actions/cache@v3
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached build
uses: actions/cache@v3
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Get cached dependencies
uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions functions/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"dependencies": {
"firebase-admin": "^11.2.0",
"firebase-functions": "^4.2.1"
"firebase-functions": "^4.4.1"
},
"devDependencies": {
"firebase-functions-test": "^3.0.0",
"typescript": "^4.8.4"
},
"engines": {
"node": "18"
"node": "20"
},
"main": "lib/index.js",
"name": "functions",
Expand Down
Loading
Loading