Skip to content

Commit b4d59d6

Browse files
Merge master into release
2 parents e60188d + 2b22838 commit b4d59d6

35 files changed

+119
-105
lines changed

.changeset/selfish-donkeys-cheer.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'firebase': patch
3+
---
4+
5+
Fix glob pattern to work with Node 20 and its NPM version.

.changeset/thirty-otters-hug.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/auth': patch
3+
---
4+
5+
Fix possible XSS vulnerability through **FIREBASE_DEFAULTS** settings.

.changeset/violet-ways-judge.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

.github/workflows/canary-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
with:
3232
# Canary release script requires git history and tags.
3333
fetch-depth: 0
34-
- name: Set up Node (16)
34+
- name: Set up Node (20)
3535
uses: actions/setup-node@v3
3636
with:
37-
node-version: 16.x
37+
node-version: 20.x
3838
- name: Yarn install
3939
run: yarn
4040
- name: Deploy canary

.github/workflows/check-changeset.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
with:
3535
# This makes Actions fetch all Git history so check_changeset script can diff properly.
3636
fetch-depth: 0
37-
- name: Set up Node (16)
37+
- name: Set up Node (20)
3838
uses: actions/setup-node@v3
3939
with:
40-
node-version: 16.x
40+
node-version: 20.x
4141
- name: Yarn install
4242
run: yarn
4343
- name: Run changeset script

.github/workflows/check-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
with:
2828
# get all history for the diff
2929
fetch-depth: 0
30-
- name: Set up Node (16)
30+
- name: Set up Node (20)
3131
uses: actions/setup-node@v3
3232
with:
33-
node-version: 16.x
33+
node-version: 20.x
3434
- name: Yarn install
3535
run: yarn
3636
- name: Run doc generation (devsite docs)

.github/workflows/check-pkg-paths.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
with:
2828
# This makes Actions fetch all Git history so run-changed script can diff properly.
2929
fetch-depth: 0
30-
- name: Set up Node (16)
30+
- name: Set up Node (20)
3131
uses: actions/setup-node@v3
3232
with:
33-
node-version: 16.x
33+
node-version: 20.x
3434
- name: Yarn install
3535
run: yarn
3636
- name: Yarn build

.github/workflows/deploy-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
with:
3535
# This makes Actions fetch all Git history so run-changed script can diff properly.
3636
fetch-depth: 0
37-
- name: Set up node (18)
37+
- name: Set up node (20)
3838
uses: actions/setup-node@v3
3939
with:
40-
node-version: 18.x
40+
node-version: 20.x
4141
- name: Yarn install
4242
run: yarn
4343
- name: Deploy project config if needed

.github/workflows/e2e-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
steps:
3737
- name: Checkout Repo
3838
uses: actions/checkout@master
39-
- name: Set up Node (18)
39+
- name: Set up Node (20)
4040
uses: actions/setup-node@master
4141
with:
42-
node-version: 18.x
42+
node-version: 20.x
4343
- name: install Chrome stable
4444
run: |
4545
sudo apt-get update

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
with:
3232
# get all history for the diff
3333
fetch-depth: 0
34-
- name: Set up node (16)
34+
- name: Set up node (20)
3535
uses: actions/setup-node@v3
3636
with:
37-
node-version: 16.x
37+
node-version: 20.x
3838
- name: Yarn install
3939
run: yarn
4040
- name: Run formatting script

0 commit comments

Comments
 (0)