Skip to content

Commit d0d1dde

Browse files
Bump actions/checkout from 4 to 5 in the github-actions group (#427)
* 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](actions/checkout@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] <[email protected]> * give permission to write to checks * give permission to read checks * update build * no, needs to be able to write --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bryan Kendall <[email protected]>
1 parent 7a831e3 commit d0d1dde

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

.github/workflows/check-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
test:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- name: Install dependencies
2525
run: npm ci
2626
- name: Build

.github/workflows/deploy-preview-with-version.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ on: pull_request
1919
jobs:
2020
preview:
2121
runs-on: ubuntu-latest
22+
permissions:
23+
checks: write
2224
steps:
23-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2426
- name: Deploy to Firebase Hosting preview channel
2527
id: firebase_hosting_preview
2628
uses: ./

.github/workflows/deploy-preview.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ on: pull_request
1919
jobs:
2020
preview:
2121
runs-on: ubuntu-latest
22+
permissions:
23+
checks: write
2224
steps:
23-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2426
- name: Deploy to Firebase Hosting preview channel
2527
id: firebase_hosting_preview
2628
uses: ./

.github/workflows/deploy-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
deploy_website:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
# - run: npm run build
1414
- uses: ./
1515
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
test:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- name: Install dependencies
2525
run: npm ci
2626
- name: Check that Prettier was run

bin/action.min.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92976,7 +92976,6 @@ async function execWithCredentials(args, projectId, gacFilename, opts) {
9297692976
}
9297792977
return deployOutputBuf.length ? deployOutputBuf[deployOutputBuf.length - 1].toString("utf-8") : ""; // output from the CLI
9297892978
}
92979-
9298092979
async function deployPreview(gacFilename, deployConfig) {
9298192980
const {
9298292981
projectId,

0 commit comments

Comments
 (0)