Skip to content

Commit e24628a

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/rollup-2.79.2
2 parents e723330 + 857e502 commit e24628a

File tree

316 files changed

+13742
-10955
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

316 files changed

+13742
-10955
lines changed

.github/release-please.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/build-catalog.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Build Catalog
22

33
on: [push]
44

5+
permissions:
6+
contents: read
7+
58
jobs:
69
build-catalog:
710
runs-on: ubuntu-latest
@@ -11,9 +14,9 @@ jobs:
1114
with:
1215
node-version: 18
1316
cache: npm
14-
- uses: google/wireit@setup-github-actions-caching/v1
17+
- uses: google/wireit@setup-github-actions-caching/v2
1518

1619
- run: npm ci
1720
- run: npm run build:catalog
1821
env:
19-
WIREIT_FAILURES: continue
22+
WIREIT_FAILURES: continue

.github/workflows/commitlint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: commitlint
22

33
on: [pull_request]
44

5+
permissions:
6+
contents: read
7+
58
jobs:
69
commitlint:
710
runs-on: ubuntu-latest

.github/workflows/firebase-hosting-merge.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ name: Deploy to Firebase Hosting on release and manual
55
- published
66
workflow_dispatch:
77
# allows triggering from the gihub UI
8+
9+
permissions:
10+
contents: read
11+
812
jobs:
913
build_and_deploy:
1014
runs-on: ubuntu-latest
@@ -14,7 +18,7 @@ jobs:
1418
with:
1519
node-version: 20
1620
cache: npm
17-
- uses: google/wireit@setup-github-actions-caching/v1
21+
- uses: google/wireit@setup-github-actions-caching/v2
1822
- run: npm ci
1923
- run: 'npm run build:catalog'
2024
- uses: FirebaseExtended/action-hosting-deploy@v0

.github/workflows/firebase-hosting-pull-request.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ name: Deploy to Firebase Hosting on PR
55
on:
66
pull_request:
77
types: [ labeled ]
8+
9+
permissions:
10+
contents: read
11+
pull-requests: write
12+
813
jobs:
914
build_and_preview:
1015
if: github.event.label.name == 'preview-catalog' && github.event.pull_request.head.repo.full_name == github.repository
@@ -15,7 +20,7 @@ jobs:
1520
with:
1621
node-version: 20
1722
cache: npm
18-
- uses: google/wireit@setup-github-actions-caching/v1
23+
- uses: google/wireit@setup-github-actions-caching/v2
1924
- run: npm ci
2025
- run: 'npm run build:catalog'
2126
- uses: FirebaseExtended/action-hosting-deploy@v0

.github/workflows/nightly.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
workflow_dispatch:
77
# allows triggering from the github UI
88

9+
permissions:
10+
contents: write
11+
912
jobs:
1013
check_for_changes:
1114
runs-on: ubuntu-latest
@@ -30,7 +33,7 @@ jobs:
3033
with:
3134
node-version: 18
3235
cache: npm
33-
- uses: google/wireit@setup-github-actions-caching/v1
36+
- uses: google/wireit@setup-github-actions-caching/v2
3437

3538
- run: npm ci
3639
- run: npm run build

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
tags:
66
- 'v*'
77

8+
permissions:
9+
contents: read
10+
811
jobs:
912
publish:
1013
runs-on: ubuntu-latest
@@ -15,7 +18,7 @@ jobs:
1518
with:
1619
node-version: 18
1720
cache: npm
18-
- uses: google/wireit@setup-github-actions-caching/v1
21+
- uses: google/wireit@setup-github-actions-caching/v2
1922

2023
- run: npm ci
2124
- run: npm run build
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
name: release-please
7+
8+
jobs:
9+
release-please:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
steps:
15+
- uses: googleapis/release-please-action@v4
16+
with:
17+
token: ${{ secrets.LIT_ROBOT_ACCESS_TOKEN }}

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Tests
22

33
on: [push]
44

5+
permissions:
6+
contents: read
7+
58
jobs:
69
build:
710
runs-on: ubuntu-latest
@@ -12,7 +15,7 @@ jobs:
1215
with:
1316
node-version: 18
1417
cache: npm
15-
- uses: google/wireit@setup-github-actions-caching/v1
18+
- uses: google/wireit@setup-github-actions-caching/v2
1619

1720
- run: npm ci
1821
- run: npm run build
@@ -28,10 +31,10 @@ jobs:
2831
with:
2932
node-version: 18
3033
cache: npm
31-
- uses: google/wireit@setup-github-actions-caching/v1
34+
- uses: google/wireit@setup-github-actions-caching/v2
3235

3336
- run: npm ci
34-
- run: npx playwright install-deps
37+
- run: npx playwright install --with-deps
3538
- run: npm test
3639
env:
3740
WIREIT_FAILURES: continue

.github/workflows/update-docs-on-main.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ on:
55
branches: main
66
workflow_dispatch:
77
# allows triggering from the github UI
8+
9+
permissions:
10+
contents: write
11+
pull-requests: write
12+
813
jobs:
914
check-for-doc-changes:
1015
runs-on: ubuntu-latest
@@ -15,7 +20,7 @@ jobs:
1520
with:
1621
node-version: 20
1722
cache: npm
18-
- uses: google/wireit@setup-github-actions-caching/v1
23+
- uses: google/wireit@setup-github-actions-caching/v2
1924

2025
- name: Install Dependencies
2126
run: npm ci
@@ -29,15 +34,15 @@ jobs:
2934

3035
- name: Create PR
3136
if: steps.ifChange.outputs.changed == 'yes'
32-
uses: peter-evans/create-pull-request@v5
37+
uses: peter-evans/create-pull-request@v7
3338
with:
3439
token: ${{ secrets.LIT_ROBOT_ACCESS_TOKEN }}
3540
commit-message: 'docs: update API docs'
3641
author: lit-robot <[email protected]>
3742
committer: lit-robot <[email protected]>
3843
title: 'docs: update API docs'
3944
body: This PR was auto generated by the update-docs-on-main GitHub action.
40-
reviewers: e111077,asyncliz,AndrewJakubowicz
45+
reviewers: asyncliz
4146
branch: auto-update-docs
4247
labels: |
4348
Ready for Google

0 commit comments

Comments
 (0)