Skip to content

Commit 0333298

Browse files
authored
Update Github Actions [API-2265] (hazelcast#708)
1 parent 1579ff5 commit 0333298

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/coverage_runner.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,17 @@ jobs:
5555

5656
- name: Checkout code for PR
5757
if: github.event_name == 'pull_request_target'
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v4
5959
with:
6060
ref: refs/pull/${{ github.event.pull_request.number }}/merge
6161

6262
- name: Checkout repository for push event
6363
if: github.event_name == 'push'
64-
uses: actions/checkout@v2
64+
uses: actions/checkout@v4
6565

6666
- name: Checkout PR coming from community.
6767
if: github.event_name == 'workflow_dispatch'
68-
uses: actions/checkout@v2
68+
uses: actions/checkout@v4
6969
with:
7070
ref: refs/pull/${{ github.event.inputs.pr_number }}/merge
7171

.github/workflows/linter_docs_mypy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: '3.12'
2020

2121
- name: Checkout to code
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323

2424
- name: Install dependencies
2525
run: |
@@ -39,7 +39,7 @@ jobs:
3939
python-version: '3.12'
4040

4141
- name: Checkout to code
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v4
4343

4444
- name: Install dependencies
4545
run: |
@@ -60,7 +60,7 @@ jobs:
6060
python-version: '3.12'
6161

6262
- name: Checkout to code
63-
uses: actions/checkout@v2
63+
uses: actions/checkout@v4
6464

6565
- name: Install dependencies
6666
run: |

.github/workflows/nightly_runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
distribution: 'temurin'
2727
java-version: '17'
2828
- name: Checkout to code
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v4
3030
- name: Install dependencies
3131
run: |
3232
pip install -r requirements-test.txt

0 commit comments

Comments
 (0)