Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update action-hosting-deploy version #7025

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/experiments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export function assertEnabled(name: ExperimentName, task: string): void {
"FIREBASE_CLI_EXPERIMENTS",
)} environment variable to ${filename}, like so: ${italic(`

- uses: FirebaseExtended/action-hosting-deploy@v0
- uses: FirebaseExtended/action-hosting-deploy@ac8041b3b04337509168113bf98b95879df22322
with:
...
env:
Expand Down
3 changes: 2 additions & 1 deletion src/init/features/hosting/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ const YML_PULL_REQUEST_FILENAME = "firebase-hosting-pull-request.yml";
const YML_MERGE_FILENAME = "firebase-hosting-merge.yml";

const CHECKOUT_GITHUB_ACTION_NAME = "actions/checkout@v4";
const HOSTING_GITHUB_ACTION_NAME = "FirebaseExtended/action-hosting-deploy@v0";
const HOSTING_GITHUB_ACTION_NAME =
"FirebaseExtended/action-hosting-deploy@ac8041b3b04337509168113bf98b95879df22322";

const SERVICE_ACCOUNT_MAX_KEY_NUMBER = 10;

Expand Down