Skip to content

Commit 048309c

Browse files
committed
Bump to v1
1 parent a8704b6 commit 048309c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The return value of the script will be in the step's outputs under the
3232
"result" key.
3333

3434
```yaml
35-
- uses: actions/github-script@0.9.0
35+
- uses: actions/github-script@v1
3636
id: set-result
3737
with:
3838
script: return "Hello!"
@@ -51,7 +51,7 @@ output of a github-script step. For some workflows, string encoding is preferred
5151
`result-encoding` input:
5252

5353
```yaml
54-
- uses: actions/github-script@0.9.0
54+
- uses: actions/github-script@v1
5555
id: my-script
5656
with:
5757
github-token: ${{secrets.GITHUB_TOKEN}}
@@ -77,7 +77,7 @@ jobs:
7777
comment:
7878
runs-on: ubuntu-latest
7979
steps:
80-
- uses: actions/github-script@0.9.0
80+
- uses: actions/github-script@v1
8181
with:
8282
github-token: ${{secrets.GITHUB_TOKEN}}
8383
script: |
@@ -100,7 +100,7 @@ jobs:
100100
apply-label:
101101
runs-on: ubuntu-latest
102102
steps:
103-
- uses: actions/github-script@0.9.0
103+
- uses: actions/github-script@v1
104104
with:
105105
github-token: ${{secrets.GITHUB_TOKEN}}
106106
script: |
@@ -121,7 +121,7 @@ jobs:
121121
welcome:
122122
runs-on: ubuntu-latest
123123
steps:
124-
- uses: actions/github-script@0.9.0
124+
- uses: actions/github-script@v1
125125
with:
126126
github-token: ${{secrets.GITHUB_TOKEN}}
127127
script: |
@@ -165,7 +165,7 @@ jobs:
165165
diff:
166166
runs-on: ubuntu-latest
167167
steps:
168-
- uses: actions/github-script@0.9.0
168+
- uses: actions/github-script@v1
169169
with:
170170
github-token: ${{secrets.GITHUB_TOKEN}}
171171
script: |
@@ -190,7 +190,7 @@ jobs:
190190
runs-on: ubuntu-latest
191191
steps:
192192
- uses: @actions/checkout@v2
193-
- uses: @actions/github-script@0.9.0
193+
- uses: @actions/github-script@v1
194194
with:
195195
script: |
196196
const path = require('path')

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "github-script",
33
"description": "A GitHub action for executing a simple script",
4-
"version": "0.9.0",
4+
"version": "1.0.0",
55
"author": "GitHub",
66
"license": "MIT",
77
"main": "dist/index.js",

0 commit comments

Comments
 (0)