Skip to content

Commit

Permalink
Merge pull request #48 from DarkRockMountain/bugfix/update-go-version…
Browse files Browse the repository at this point in the history
…-1.22.5

fix: update Go version to 1.22.5 to resolve net/http vulnerability
  • Loading branch information
DarkRockMountain-admin authored Jul 4, 2024
2 parents 2f19ba7 + 2f1b479 commit 8e4a486
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 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.4
go 1.22.5

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,6 +1,6 @@
module github.com/darkrockmountain/gomail/azure_email_sender

go 1.22.4
go 1.22.5

require github.com/darkrockmountain/gomail v0.6.0-beta

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/darkrockmountain/gomail/digitalocean_email_sender

go 1.22.4
go 1.22.5

require github.com/darkrockmountain/gomail v0.6.0-beta

Expand Down
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.4
go 1.22.5

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.4
go-version: 1.22.5

- 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.4
go-version: 1.22.5

- 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@dd0578b371c987f96d1185abb54344b44352bd58 # v1.0.3
with:
go-version-input: 1.22.4
go-version-input: 1.22.5
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.4
go 1.22.5

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

0 comments on commit 8e4a486

Please sign in to comment.