Skip to content

Commit e940ef5

Browse files
authored
Merge pull request #135 from JohnTitor/nodejs16
Upgrade some actions to Node.js 16
2 parents 24f0076 + 06424fe commit e940ef5

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

github-actions/cancel-outdated-builds/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ seconds to wait between checks:
2222
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
2323
with:
2424
github_token: "${{ secrets.github_token }}"
25-
check_every_seconds: 120 # 2 minutes
25+
check_every_seconds: 120 # 2 minutes
2626
```
2727

2828
## Development
2929

30-
The action is written in NodeJS 12, and you can install the dependencies with:
30+
The action is written in NodeJS 16, and you can install the dependencies with:
3131

3232
```
3333
npm install

github-actions/cancel-outdated-builds/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ inputs:
1111
default: "60"
1212

1313
runs:
14-
using: node12
14+
using: node16
1515
main: dist/index.js

github-actions/simple-ci/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
4444
## Development
4545
46-
The action is written in NodeJS 12, and you can install the dependencies with:
46+
The action is written in NodeJS 16, and you can install the dependencies with:
4747
4848
```sh
4949
npm install

github-actions/simple-ci/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ inputs:
77
required: false
88

99
runs:
10-
using: node12
10+
using: node16
1111
main: dist/index.js

github-actions/upload-docker-image/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ on that service.
3939

4040
## Development
4141

42-
The action is written in NodeJS 12, and you can install the dependencies with:
42+
The action is written in NodeJS 16, and you can install the dependencies with:
4343

4444
```
4545
npm install

github-actions/upload-docker-image/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ inputs:
2828
required: true
2929

3030
runs:
31-
using: node12
31+
using: node16
3232
main: dist/index.js

0 commit comments

Comments
 (0)