Skip to content

Commit 4e53e02

Browse files
Bump actions/checkout from 3 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 00c7473 commit 4e53e02

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/coverage_runner.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,17 @@ jobs:
6363

6464
- name: Checkout code for PR
6565
if: github.event_name == 'pull_request_target'
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v6
6767
with:
6868
ref: refs/pull/${{ github.event.pull_request.number }}/merge
6969

7070
- name: Checkout repository for push event
7171
if: github.event_name == 'push'
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v6
7373

7474
- name: Checkout PR coming from community.
7575
if: github.event_name == 'workflow_dispatch'
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v6
7777
with:
7878
ref: refs/pull/${{ github.event.inputs.pr_number }}/merge
7979

@@ -90,7 +90,7 @@ jobs:
9090
HAZELCAST_ENTERPRISE_KEY,CN/HZ_LICENSE_KEY
9191
9292
- name: Checkout to certificates
93-
uses: actions/checkout@v3
93+
uses: actions/checkout@v6
9494
with:
9595
repository: hazelcast/private-test-artifacts
9696
path: certs

.github/workflows/linter_docs_mypy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
python-version: ${{ needs.python-versions.outputs.latest-python-version }}
2424

2525
- name: Checkout to code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
- name: Install dependencies
2929
run: |
@@ -44,7 +44,7 @@ jobs:
4444
python-version: ${{ needs.python-versions.outputs.latest-python-version }}
4545

4646
- name: Checkout to code
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848

4949
- name: Install dependencies
5050
run: |
@@ -66,7 +66,7 @@ jobs:
6666
python-version: ${{ needs.python-versions.outputs.latest-python-version }}
6767

6868
- name: Checkout to code
69-
uses: actions/checkout@v4
69+
uses: actions/checkout@v6
7070

7171
- name: Install dependencies
7272
run: |

.github/workflows/nightly_runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
distribution: 'temurin'
3030
java-version: '17'
3131
- name: Checkout to code
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
- name: Install dependencies
3434
run: |
3535
pip install -r requirements-test.txt

.github/workflows/update_lets_encrypt_certificate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Update Let's Encrypt certificate
1010
steps:
1111
- name: Checkout to certificates
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v6
1313
with:
1414
repository: hazelcast/private-test-artifacts
1515
path: certs
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
unzip certs.jar
2222
- name: Checkout to client
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v6
2424
with:
2525
repository: hazelcast/hazelcast-python-client
2626
path: client

0 commit comments

Comments
 (0)