From ff2cc11400ed5f5a24b949bd932bf2cec34a3e85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 22:17:25 +0000 Subject: [PATCH 1/5] Bump actions/checkout from 4 to 5 in the github-actions group Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/check-build.yml | 2 +- .github/workflows/deploy-preview-with-version.yml | 2 +- .github/workflows/deploy-preview.yml | 2 +- .github/workflows/deploy-production.yml | 2 +- .github/workflows/test.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-build.yml b/.github/workflows/check-build.yml index 0eefa820..bb721418 100644 --- a/.github/workflows/check-build.yml +++ b/.github/workflows/check-build.yml @@ -20,7 +20,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: npm ci - name: Build diff --git a/.github/workflows/deploy-preview-with-version.yml b/.github/workflows/deploy-preview-with-version.yml index bc312952..70b0450d 100644 --- a/.github/workflows/deploy-preview-with-version.yml +++ b/.github/workflows/deploy-preview-with-version.yml @@ -20,7 +20,7 @@ jobs: preview: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Deploy to Firebase Hosting preview channel id: firebase_hosting_preview uses: ./ diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index f7ba034a..8f213561 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -20,7 +20,7 @@ jobs: preview: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Deploy to Firebase Hosting preview channel id: firebase_hosting_preview uses: ./ diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 7b83f52e..9e7686ec 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -9,7 +9,7 @@ jobs: deploy_website: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # - run: npm run build - uses: ./ with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fe4059c4..4b1cdee3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: npm ci - name: Check that Prettier was run From 7dabb4b50fb01f5edd42e41b527af837a910a793 Mon Sep 17 00:00:00 2001 From: Bryan Kendall Date: Wed, 13 Aug 2025 09:06:17 -0700 Subject: [PATCH 2/5] give permission to write to checks --- .github/workflows/deploy-preview.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 8f213561..f503a020 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -19,6 +19,8 @@ on: pull_request jobs: preview: runs-on: ubuntu-latest + permissions: + checks: write steps: - uses: actions/checkout@v5 - name: Deploy to Firebase Hosting preview channel From 257d65177baa5c729bd247e37869f049a7a4b87a Mon Sep 17 00:00:00 2001 From: Bryan Kendall Date: Wed, 13 Aug 2025 09:08:37 -0700 Subject: [PATCH 3/5] give permission to read checks --- .github/workflows/deploy-preview-with-version.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-preview-with-version.yml b/.github/workflows/deploy-preview-with-version.yml index 70b0450d..01102362 100644 --- a/.github/workflows/deploy-preview-with-version.yml +++ b/.github/workflows/deploy-preview-with-version.yml @@ -19,6 +19,8 @@ on: pull_request jobs: preview: runs-on: ubuntu-latest + permissions: + checks: read steps: - uses: actions/checkout@v5 - name: Deploy to Firebase Hosting preview channel From 5425774c4fbf5fb65e6b6daa6bc82da68080436a Mon Sep 17 00:00:00 2001 From: Bryan Kendall Date: Wed, 13 Aug 2025 09:09:14 -0700 Subject: [PATCH 4/5] update build --- bin/action.min.js | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/action.min.js b/bin/action.min.js index 8324beb8..9c931a29 100644 --- a/bin/action.min.js +++ b/bin/action.min.js @@ -92976,7 +92976,6 @@ async function execWithCredentials(args, projectId, gacFilename, opts) { } return deployOutputBuf.length ? deployOutputBuf[deployOutputBuf.length - 1].toString("utf-8") : ""; // output from the CLI } - async function deployPreview(gacFilename, deployConfig) { const { projectId, From c8332d1fa024799efe98d32de0a66e7cf2b06205 Mon Sep 17 00:00:00 2001 From: Bryan Kendall Date: Wed, 13 Aug 2025 09:09:47 -0700 Subject: [PATCH 5/5] no, needs to be able to write --- .github/workflows/deploy-preview-with-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-preview-with-version.yml b/.github/workflows/deploy-preview-with-version.yml index 01102362..e23f2c28 100644 --- a/.github/workflows/deploy-preview-with-version.yml +++ b/.github/workflows/deploy-preview-with-version.yml @@ -20,7 +20,7 @@ jobs: preview: runs-on: ubuntu-latest permissions: - checks: read + checks: write steps: - uses: actions/checkout@v5 - name: Deploy to Firebase Hosting preview channel