Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
072d3ea
chore(deps): bump the version-minor-and-patch group across 1 director…
dependabot[bot] Jul 20, 2026
cd84656
Merge pull request #2914 from firebase/dependabot/npm_and_yarn/versio…
inlined Jul 22, 2026
7b624a6
chore: enforce Apache license headers with google/addlicense (#2928)
cabljac Jul 30, 2026
71a28ea
Add release workflow
inlined Aug 12, 2026
cd30b83
Fix zizmore findings in new file only (existing errors still present)
inlined Aug 13, 2026
0384dc3
Another attempt to fix zizmor
inlined Aug 13, 2026
b2e181c
More zizmor fixes. Trusted publishing seems incompatible with Google
inlined Aug 13, 2026
95834dc
Apparently I have to fix ALL zizmore issues if I touch any action
inlined Aug 13, 2026
fdab1cf
Merge origin/next into inlined.kit-release-pipeline and resolve confl…
inlined Aug 13, 2026
8a6bb32
Fix credential persistence finding in validate.yml license job
inlined Aug 13, 2026
69233e0
Fix incorrect actions/cache commit hash in readmes-updated.yml
inlined Aug 13, 2026
8fc5d09
Merge pull request #2940 from firebase/inlined.kit-release-pipeline
inlined Aug 13, 2026
f97c164
fix(ci): remove workspace flags and support target_branch parameter
inlined Aug 13, 2026
b1c5c19
fix(ci): use public registry for npm ci during build step
inlined Aug 13, 2026
6fcc767
fix(ci): pass target_branch via env to resolve zizmor template-injection
inlined Aug 13, 2026
587c3a0
chore(ci): remove target_branch parameter in favor of github.ref_name
inlined Aug 14, 2026
cc4c613
Merge pull request #2944 from firebase/inlined.kit-release-pipeline
inlined Aug 14, 2026
6ed7c12
Kits should be published from the kits branch
inlined Aug 18, 2026
09ada4f
Merge pull request #2950 from firebase/release-kit-always-kits-branch
inlined Aug 18, 2026
bcc9445
Trying out trusted publishing
inlined Aug 19, 2026
c0d6361
Fix YAML
inlined Aug 19, 2026
6615b41
chore(ci): clean up setup-node in release-kit workflow
inlined Aug 19, 2026
c2b8086
Remove node token
inlined Aug 20, 2026
3799a59
Merge pull request #2959 from firebase/inlined.provenance
inlined Aug 20, 2026
3911782
Print inputs as the first step of release-kits
inlined Aug 20, 2026
8c16d23
Merge pull request #2965 from inlined/print-inputs-release-kit
inlined Aug 20, 2026
8ed32d3
fix(bq-scripts): use full git URL in repository.url (#2967)
CorieW Aug 24, 2026
6495e5c
chore(ci): sync release-kit workflow from kits (#2992)
cabljac Aug 27, 2026
3ee422d
chore(ci): sync release-kit workflow from kits (#2993) (#2994)
cabljac Aug 27, 2026
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
6 changes: 4 additions & 2 deletions .github/workflows/npm_publish_bq_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
runs-on: ubuntu-latest
name: publish_if_newer_version
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 24
- name: NPM install
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/readmes-updated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,20 @@ env:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7
with:
node-version: 22
cache: "npm"
Expand All @@ -44,7 +47,7 @@ jobs:
echo "::set-output name=dir::$(npm config get prefix)"

- name: Cache global dependencies
uses: actions/cache@v4
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ${{ steps.global-deps-setup.outputs.dir }}
key:
Expand All @@ -54,8 +57,10 @@ jobs:
${{ runner.os }}-npm-global-deps-v1-

- name: Install Firebase and Lerna
env:
GLOBAL_DEPS_DIR: ${{ steps.global-deps-setup.outputs.dir }}
run: |
echo "${{ steps.global-deps-setup.outputs.dir }}/bin" >> $GITHUB_PATH
echo "$GLOBAL_DEPS_DIR/bin" >> $GITHUB_PATH
npm install -g firebase-tools lerna

- name: Install local dependencies
Expand Down
Loading
Loading