diff --git a/examples.md b/examples.md
index 72779ee..bd9bc51 100644
--- a/examples.md
+++ b/examples.md
@@ -8,6 +8,7 @@
 - [Swift, Objective-C - Carthage](#swift-objective-c---carthage)
 - [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
 - [Ruby - Gem](#ruby---gem)
+- [Go - Modules](#go---modules)
 
 ## Node - npm
 
@@ -95,4 +96,15 @@ uses: actions/cache@preview
     key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
     restore-keys: |
       ${{ runner.os }}-gem-
-```
\ No newline at end of file
+```
+
+## Go - Modules
+
+```yaml
+- uses: actions/cache@preview
+  with:
+    path: ~/go/pkg/mod
+    key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
+    restore-keys: |
+      ${{ runner.os }}-go-
+```