From 884f91708b2d2f93d42ca35b0d3089a7fd0e0b4f Mon Sep 17 00:00:00 2001
From: Shubham Kumar <shubhamkrai123@gmail.com>
Date: Sat, 9 Jul 2022 20:54:50 +0530
Subject: [PATCH] fix: use composite action

---
 action.yml | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/action.yml b/action.yml
index 19325ef..6a7c33c 100644
--- a/action.yml
+++ b/action.yml
@@ -31,8 +31,13 @@ outputs:
     description: "Stringified posts in readme format"
 
 runs:
-  using: "docker"
-  image: "Dockerfile"
+  using: composite
+  steps:
+  - uses: actions/setup-go@v2
+    with:
+      go-version: '1.18'
+
+  - run: go run ./main.go
 
 branding:
   icon: 'file-text'