Skip to content

Commit 81b0111

Browse files
authored
Update Github Actions [API-2265] (#1528)
1 parent 1a287af commit 81b0111

7 files changed

+17
-17
lines changed

.github/workflows/code_quality.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414

1515
steps:
1616
- name: Setup Node.js
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: 12
2020
- name: Checkout code
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222
- name: Install dependencies
2323
run: |
2424
npm install

.github/workflows/code_sample_checker.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212

1313
steps:
1414
- name: Setup Java
15-
uses: actions/setup-java@v1
15+
uses: actions/setup-java@v4
1616
with:
1717
java-version: 17
1818
- name: Setup Node.js
19-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: 10
2222
- name: Checkout code
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v4
2424
- name: Install dependencies and compile client
2525
run: |
2626
npm install

.github/workflows/coverage_runner.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,28 +43,28 @@ jobs:
4343
with:
4444
java-version: 17
4545
- name: Setup Node.js
46-
uses: actions/setup-node@v2
46+
uses: actions/setup-node@v4
4747
with:
4848
node-version: 10
4949

5050
- name: Checkout code for PR
5151
if: github.event_name == 'pull_request_target'
52-
uses: actions/checkout@v2
52+
uses: actions/checkout@v4
5353
with:
5454
ref: refs/pull/${{ github.event.pull_request.number }}/merge
5555

5656
- name: Checkout repository for push event
5757
if: github.event_name == 'push'
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v4
5959

6060
- name: Checkout PR coming from community.
6161
if: github.event_name == 'workflow_dispatch'
62-
uses: actions/checkout@v2
62+
uses: actions/checkout@v4
6363
with:
6464
ref: refs/pull/${{ github.event.inputs.pr_number }}/merge
6565

6666
- name: Checkout to test artifacts
67-
uses: actions/checkout@v2
67+
uses: actions/checkout@v4
6868
with:
6969
repository: hazelcast/private-test-artifacts
7070
path: certs

.github/workflows/generate-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
generate-docs:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
7+
- uses: actions/checkout@v4
88
- name: Install dependencies
99
run: |
1010
npm install

.github/workflows/markdown_link_checker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
markdown-link-check:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
7+
- uses: actions/checkout@v4
88
- uses: gaurav-nelson/github-action-markdown-link-check@v1
99
with:
1010
use-quiet-mode: 'yes'

.github/workflows/nightly_runner_maintenance.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
java-version: 8
2121
distribution: temurin
2222
- name: Setup Node.js
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v4
2424
with:
2525
node-version: ${{ matrix.nodejs_version }}
2626
- name: Disable line ending conversion of git
2727
if: ${{ matrix.os == 'windows-latest'}}
2828
run: git config --global core.autocrlf false
2929
- name: Checkout code
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v4
3131
with:
3232
ref: ${{ matrix.branch }}
3333
- name: Install dependencies and compile client

.github/workflows/nightly_runner_master.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
java-version: 17
2020
distribution: temurin
2121
- name: Setup Node.js
22-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.nodejs_version }}
2525
- name: Checkout code
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727
- name: Checkout to test artifacts
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v4
2929
with:
3030
repository: hazelcast/private-test-artifacts
3131
path: certs

0 commit comments

Comments
 (0)