Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/coverage_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,17 @@ jobs:

- name: Checkout code for PR
if: github.event_name == 'pull_request_target'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge

- name: Checkout repository for push event
if: github.event_name == 'push'
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Checkout PR coming from community.
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: refs/pull/${{ github.event.inputs.pr_number }}/merge

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linter_docs_mypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python-version: ${{ needs.python-versions.outputs.latest-python-version }}

- name: Checkout to code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install dependencies
run: |
Expand All @@ -44,7 +44,7 @@ jobs:
python-version: ${{ needs.python-versions.outputs.latest-python-version }}

- name: Checkout to code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install dependencies
run: |
Expand All @@ -66,7 +66,7 @@ jobs:
python-version: ${{ needs.python-versions.outputs.latest-python-version }}

- name: Checkout to code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
distribution: 'temurin'
java-version: '17'
- name: Checkout to code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install dependencies
run: |
pip install -r requirements-test.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_lets_encrypt_certificate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Update Let's Encrypt certificate
steps:
- name: Checkout to certificates
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
repository: hazelcast/private-test-artifacts
path: certs
Expand All @@ -20,7 +20,7 @@ jobs:
run: |
unzip certs.jar
- name: Checkout to client
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
repository: hazelcast/hazelcast-python-client
path: client
Expand Down