Skip to content

Commit

Permalink
fix: update Go to 1.22.4 to address GO-2024-2887
Browse files Browse the repository at this point in the history
  • Loading branch information
JRocabruna committed Jun 6, 2024
1 parent 2498c56 commit 79072a0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .examples/.serverless/aws_lambda/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/darkrockmountain/gomail/aws_lambda_email_sender

go 1.22.1
go 1.22.4

require (
github.com/aws/aws-lambda-go v1.47.0
Expand Down
2 changes: 1 addition & 1 deletion .examples/.serverless/azure_functions/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/darkrockmountain/gomail/azure_email_sender

go 1.22.1
go 1.22.4

require github.com/darkrockmountain/gomail v0.5.1
2 changes: 1 addition & 1 deletion .examples/.serverless/google_cloud_functions/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/darkrockmountain/gomail/google_cloud_email_sender

go 1.22.1
go 1.22.4

require (
github.com/GoogleCloudPlatform/functions-framework-go v1.8.1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: 1.22.3
go-version: 1.22.4

- name: Install dependencies
run: go mod tidy
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: 1.22.3
go-version: 1.22.4

- name: Run tests and generate coverage
run: go test -coverprofile=coverage.out ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/govulncheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ jobs:
- id: govulncheck
uses: golang/govulncheck-action@3a32958c2706f7048305d5a2e53633d7e37e97d0 # v1.0.2
with:
go-version-input: 1.22.3
go-version-input: 1.22.4
go-package: ./...
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/darkrockmountain/gomail

go 1.22.3
go 1.22.4

require (
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2
Expand Down

0 comments on commit 79072a0

Please sign in to comment.