Skip to content

Commit a2a3234

Browse files
1 parent 245dbb3 commit a2a3234

File tree

17 files changed

+18
-18
lines changed

17 files changed

+18
-18
lines changed

docs/recipes/aws-sam-container/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ This command grants permission to all principals (*) to invoke your Lambda funct
9797

9898
### Golang installation
9999

100-
Please ensure Go 1.x (where 'x' is the latest version) is installed as per the instructions on the official golang website: https://golang.org/doc/install
100+
Please ensure Go 1.25 (or newer in the Go 1.x series) is installed as per the instructions on the official golang website: https://golang.org/doc/install
101101

102102
A quickstart way would be to use Homebrew, chocolatey or your linux package manager.
103103

docs/recipes/aws-sam/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ This command grants permission to all principals (*) to invoke your Lambda funct
109109

110110
### Golang installation
111111

112-
Please ensure Go 1.x (where 'x' is the latest version) is installed as per the instructions on the official golang website: https://golang.org/doc/install
112+
Please ensure Go 1.25 (or newer in the Go 1.x series) is installed as per the instructions on the official golang website: https://golang.org/doc/install
113113

114114
A quickstart way would be to use Homebrew, chocolatey or your linux package manager.
115115

docs/recipes/aws-ses-sender/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ flowchart TD
3737
## Requirements
3838

3939
### Essential Requirements
40-
- Go 1.22 or higher
40+
- Go 1.25 or higher
4141
- AWS account and configuration
4242
- AWS SES service activated
4343
- Sender email or domain verification completed

docs/recipes/email-verification/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ go run main.go
9696
## Dependencies
9797

9898
- [Fiber v2](https://github.com/gofiber/fiber)
99-
- Go 1.21+
99+
- Go 1.25+

docs/recipes/gorm-mysql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This is a sample program demonstrating how to use GORM as an ORM to connect to a
1212

1313
## Prerequisites
1414

15-
- Go 1.16 or higher
15+
- Go 1.25 or higher
1616
- MySQL database
1717
- Go modules
1818

docs/recipes/gorm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This is a sample program demonstrating how to use GORM as an ORM to connect to a
1212

1313
## Prerequisites
1414

15-
- Go 1.18 or higher
15+
- Go 1.25 or higher
1616
- Go modules
1717

1818
## Setup

docs/recipes/grpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A sample program to showcase fiber as a client to a gRPC server.
1212

1313
## Prerequisites
1414

15-
- Go 1.16 or higher
15+
- Go 1.25 or higher
1616
- Go modules
1717

1818
## Setup

docs/recipes/hexagonal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This project presents a simple product catalogue microservice to demonstrate the
1414

1515
## Prerequisites
1616

17-
- Go 1.18 or higher
17+
- Go 1.25 or higher
1818
- MongoDB
1919
- Go modules
2020

docs/recipes/jwt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This example demonstrates how to use JSON Web Tokens (JWT) for authentication in
1212

1313
## Prerequisites
1414

15-
- Go 1.16 or higher
15+
- Go 1.25 or higher
1616
- Go modules
1717

1818
## Setup

docs/recipes/k8s/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func main() {
8989
Here is an example `Dockerfile` for the application:
9090

9191
```Dockerfile
92-
FROM golang:1.24
92+
FROM golang:1.25
9393
9494
WORKDIR /app
9595

0 commit comments

Comments
 (0)