Commit 81b0111 1 parent 1a287af commit 81b0111 Copy full SHA for 81b0111
File tree 7 files changed +17
-17
lines changed
7 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ jobs:
14
14
15
15
steps :
16
16
- name : Setup Node.js
17
- uses : actions/setup-node@v2
17
+ uses : actions/setup-node@v4
18
18
with :
19
19
node-version : 12
20
20
- name : Checkout code
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v4
22
22
- name : Install dependencies
23
23
run : |
24
24
npm install
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ jobs:
12
12
13
13
steps :
14
14
- name : Setup Java
15
- uses : actions/setup-java@v1
15
+ uses : actions/setup-java@v4
16
16
with :
17
17
java-version : 17
18
18
- name : Setup Node.js
19
- uses : actions/setup-node@v2
19
+ uses : actions/setup-node@v4
20
20
with :
21
21
node-version : 10
22
22
- name : Checkout code
23
- uses : actions/checkout@v2
23
+ uses : actions/checkout@v4
24
24
- name : Install dependencies and compile client
25
25
run : |
26
26
npm install
Original file line number Diff line number Diff line change @@ -43,28 +43,28 @@ jobs:
43
43
with :
44
44
java-version : 17
45
45
- name : Setup Node.js
46
- uses : actions/setup-node@v2
46
+ uses : actions/setup-node@v4
47
47
with :
48
48
node-version : 10
49
49
50
50
- name : Checkout code for PR
51
51
if : github.event_name == 'pull_request_target'
52
- uses : actions/checkout@v2
52
+ uses : actions/checkout@v4
53
53
with :
54
54
ref : refs/pull/${{ github.event.pull_request.number }}/merge
55
55
56
56
- name : Checkout repository for push event
57
57
if : github.event_name == 'push'
58
- uses : actions/checkout@v2
58
+ uses : actions/checkout@v4
59
59
60
60
- name : Checkout PR coming from community.
61
61
if : github.event_name == 'workflow_dispatch'
62
- uses : actions/checkout@v2
62
+ uses : actions/checkout@v4
63
63
with :
64
64
ref : refs/pull/${{ github.event.inputs.pr_number }}/merge
65
65
66
66
- name : Checkout to test artifacts
67
- uses : actions/checkout@v2
67
+ uses : actions/checkout@v4
68
68
with :
69
69
repository : hazelcast/private-test-artifacts
70
70
path : certs
Original file line number Diff line number Diff line change 4
4
generate-docs :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
- - uses : actions/checkout@v2
7
+ - uses : actions/checkout@v4
8
8
- name : Install dependencies
9
9
run : |
10
10
npm install
Original file line number Diff line number Diff line change 4
4
markdown-link-check :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
- - uses : actions/checkout@v2
7
+ - uses : actions/checkout@v4
8
8
- uses : gaurav-nelson/github-action-markdown-link-check@v1
9
9
with :
10
10
use-quiet-mode : ' yes'
Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ jobs:
20
20
java-version : 8
21
21
distribution : temurin
22
22
- name : Setup Node.js
23
- uses : actions/setup-node@v2
23
+ uses : actions/setup-node@v4
24
24
with :
25
25
node-version : ${{ matrix.nodejs_version }}
26
26
- name : Disable line ending conversion of git
27
27
if : ${{ matrix.os == 'windows-latest'}}
28
28
run : git config --global core.autocrlf false
29
29
- name : Checkout code
30
- uses : actions/checkout@v2
30
+ uses : actions/checkout@v4
31
31
with :
32
32
ref : ${{ matrix.branch }}
33
33
- name : Install dependencies and compile client
Original file line number Diff line number Diff line change @@ -19,13 +19,13 @@ jobs:
19
19
java-version : 17
20
20
distribution : temurin
21
21
- name : Setup Node.js
22
- uses : actions/setup-node@v2
22
+ uses : actions/setup-node@v4
23
23
with :
24
24
node-version : ${{ matrix.nodejs_version }}
25
25
- name : Checkout code
26
- uses : actions/checkout@v2
26
+ uses : actions/checkout@v4
27
27
- name : Checkout to test artifacts
28
- uses : actions/checkout@v2
28
+ uses : actions/checkout@v4
29
29
with :
30
30
repository : hazelcast/private-test-artifacts
31
31
path : certs
You can’t perform that action at this time.
0 commit comments