From 3e6475c0895c22f1c37baa9e1459209a69c106d2 Mon Sep 17 00:00:00 2001
From: Vladimir Safonkin <vsafonkin@github.com>
Date: Fri, 25 Mar 2022 09:53:28 +0100
Subject: [PATCH 1/2] Update README to v3

---
 README.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 0ecccd9..b6b35ed 100644
--- a/README.md
+++ b/README.md
@@ -11,9 +11,9 @@ This action sets up a go environment for use in actions by:
 - optionally downloading and caching a version of Go by version and adding to PATH
 - registering problem matchers for error output
 
-# V2
+# V3
 
-The V2 offers:
+The V3 offers:
 - Adds GOBIN to the PATH
 - Proxy Support
 - `stable` input 
@@ -26,7 +26,7 @@ Matching by [semver spec](https://github.com/npm/node-semver):
 ```yaml
 steps:
   - uses: actions/checkout@v2
-  - uses: actions/setup-go@v2
+  - uses: actions/setup-go@v3
     with:
       go-version: '^1.13.1' # The Go version to download (if necessary) and use.
   - run: go version
@@ -36,7 +36,7 @@ Matching an unstable pre-release:
 ```yaml
 steps:
   - uses: actions/checkout@v2
-  - uses: actions/setup-go@v2
+  - uses: actions/setup-go@v3
     with:
       stable: 'false'
       go-version: '1.14.0-rc1' # The Go version to download (if necessary) and use.
@@ -51,7 +51,7 @@ See [action.yml](action.yml)
 ```yaml
 steps:
   - uses: actions/checkout@v2
-  - uses: actions/setup-go@v2
+  - uses: actions/setup-go@v3
     with:
       go-version: '1.16.1' # The Go version to download (if necessary) and use.
   - run: go run hello.go
@@ -69,7 +69,7 @@ If `check-latest` is set to `true`, the action first checks if the cached versio
 ```yaml
 steps:
   - uses: actions/checkout@v2
-  - uses: actions/setup-go@v2
+  - uses: actions/setup-go@v3
     with:
       go-version: '1.14'
       check-latest: true
@@ -88,7 +88,7 @@ jobs:
     steps:
       - uses: actions/checkout@v2
       - name: Setup go
-        uses: actions/setup-go@v2
+        uses: actions/setup-go@v3
         with:
           go-version: ${{ matrix.go }}
       - run: go run hello.go

From acdbc5377c8956fada49a1aa112d8947d858b586 Mon Sep 17 00:00:00 2001
From: Vladimir Safonkin <vsafonkin@github.com>
Date: Mon, 28 Mar 2022 10:24:34 +0200
Subject: [PATCH 2/2] Remove stable input description from README

---
 README.md | 1 -
 1 file changed, 1 deletion(-)

diff --git a/README.md b/README.md
index b6b35ed..3fe7e26 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,6 @@ This action sets up a go environment for use in actions by:
 The V3 offers:
 - Adds GOBIN to the PATH
 - Proxy Support
-- `stable` input 
 - Check latest version
 - Bug Fixes (including issues around version matching and semver)