From d7e9c664d49ea875f95dcb93aec4fc45240db14e Mon Sep 17 00:00:00 2001
From: Fernandez Ludovic <ldez@users.noreply.github.com>
Date: Sun, 12 May 2024 22:03:15 +0200
Subject: [PATCH] docs: use a fixed version

---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index cf61087..931e80b 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@ jobs:
       - name: golangci-lint
         uses: golangci/golangci-lint-action@v6
         with:
-          version: latest
+          version: v1.58
 ```
 
 We recommend running this action in a job separate from other jobs (`go test`, etc.)
@@ -92,7 +92,7 @@ jobs:
       - name: golangci-lint
         uses: golangci/golangci-lint-action@v6
         with:
-          version: latest
+          version: v1.58
 ```
 
 You will also likely need to add the following `.gitattributes` file to ensure that line endings for Windows builds are properly formatted:
@@ -115,7 +115,7 @@ The version of golangci-lint to use.
 ```yml
 uses: golangci/golangci-lint-action@v6
 with:
-  version: latest
+  version: v1.58
   # ...
 ```