Skip to content

Commit cef575c

Browse files
author
Danny McCormick
committed
Metadata changes
1 parent cd176c6 commit cef575c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: 'Setup Node.js for use with actions'
2-
description: 'Setup a Node.js environment and add it to the PATH, additionally providing proxy support'
1+
name: 'Setup Go for use with actions'
2+
description: 'Setup a Go environment and add it to the PATH, additionally providing proxy support'
33
author: 'GitHub'
44
inputs:
55
version:
66
description: 'Version Spec of the version to use. Examples: 10.x, 10.15.1, >=10.15.0'
77
default: '10.x'
88
runs:
99
using: 'node'
10-
main: 'lib/setup-node.js'
10+
main: 'lib/setup-go.js'

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "setup-go",
33
"version": "0.1.0",
44
"private": true,
5-
"description": "setup node action",
6-
"main": "lib/setup-node.js",
5+
"description": "setup go action",
6+
"main": "lib/setup-go.js",
77
"scripts": {
88
"build": "tsc",
99
"format": "prettier --write **/*.ts",
@@ -12,11 +12,11 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "git+https://github.com/actions/setup-node.git"
15+
"url": "git+https://github.com/actions/setup-go.git"
1616
},
1717
"keywords": [
1818
"actions",
19-
"node",
19+
"go",
2020
"setup"
2121
],
2222
"author": "GitHub",

0 commit comments

Comments
 (0)