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 dependencies #19

Merged
merged 4 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ A system that monitors Mento Governance events on-chain and sends notifications
## Running and testing the Cloud Function locally

- `npm install`
- `npm dev` to start a local cloud function with hot-reload via nodemon
- `npm run dev` to start a local cloud function with hot-reload via nodemon
- `npm test` to call the local cloud function with a mocked payload, this will send a real Discord message into the channel belonging to the configured Discord Webhook:

## Testing the Deployed Cloud Function
Expand Down
1 change: 1 addition & 0 deletions bin/get-logs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ get_function_logs() {
# Fetch raw logs
raw_logs=$(gcloud functions logs read "${function_name}" \
--region "${region}" \
--project "${project_id}" \
--format json \
--limit 50 \
--sort-by TIME_UTC)
Expand Down
4 changes: 2 additions & 2 deletions infra/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 5.36.0"
version = ">= 5.44.0"
}
archive = {
source = "hashicorp/archive"
version = ">= 2.4.2"
version = ">= 2.6.0"
}
local = {
source = "hashicorp/local"
Expand Down
Loading