Skip to content

Commit 4a027a8

Browse files
authoredOct 14, 2024
Update Github Actions [API-2265] (#1246)
1 parent 952e05e commit 4a027a8

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed
 

‎.github/actions/build-test/windows/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ runs:
161161
.\scripts\test-windows.bat
162162
$dump | wait-process
163163
164-
- uses: actions/upload-artifact@v3
164+
- uses: actions/upload-artifact@v4
165165
if: failure()
166166
with:
167167
name: dump-${{ env.JOB_NAME }}

‎.github/actions/coverage-report/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ runs:
9696
genhtml coverage.info --output-directory=coverage-html-reports
9797
9898
- name: Upload HTML views as artifact
99-
uses: actions/upload-artifact@v2
99+
uses: actions/upload-artifact@v4
100100
with:
101101
name: coverage-report
102102
path: |

‎.github/workflows/build-pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
# checkout the hazelcast/hazelcast-cpp-client repository
4646
# bare minimum - just to use actions
4747
- name: Checkout code
48-
uses: actions/checkout@v3
48+
uses: actions/checkout@v4
4949
with:
5050
ref: ${{ inputs.ref }}
5151
token: ${{ secrets.GH_TOKEN }}
@@ -108,7 +108,7 @@ jobs:
108108
name: Code Coverage
109109
steps:
110110
- name: Checkout code
111-
uses: actions/checkout@v3
111+
uses: actions/checkout@v4
112112
with:
113113
ref: ${{ needs.get-refs.outputs.ref }}
114114
token: ${{ secrets.GH_TOKEN }}
@@ -206,7 +206,7 @@ jobs:
206206
name: ubuntu-x64-(${{ matrix.build_type.type }}, ${{ matrix.shared_libs.name }}, ${{ matrix.with_openssl.name }})
207207
steps:
208208

209-
- uses: actions/checkout@v3
209+
- uses: actions/checkout@v4
210210
with:
211211
ref: ${{ needs.get-refs.outputs.ref }}
212212
token: ${{ secrets.GH_TOKEN }}
@@ -257,7 +257,7 @@ jobs:
257257
JOB_NAME: win_${{ matrix.arch.address_model }}_${{ matrix.build_type.short }}_${{ matrix.shared_libs.name }}_${{ matrix.with_openssl.name }}
258258
name: win-${{ matrix.arch.address_model }}_${{ matrix.shared_libs.name }}_${{ matrix.with_openssl.name }}
259259
steps:
260-
- uses: actions/checkout@v3
260+
- uses: actions/checkout@v4
261261
with:
262262
ref: ${{ needs.get-refs.outputs.ref }}
263263
token: ${{ secrets.GH_TOKEN }}
@@ -315,7 +315,7 @@ jobs:
315315
OPENSSL_ROOT_DIR: /usr/local/opt/openssl/
316316

317317
steps:
318-
- uses: actions/checkout@v3
318+
- uses: actions/checkout@v4
319319
with:
320320
ref: ${{ needs.get-refs.outputs.ref }}
321321
token: ${{ secrets.GH_TOKEN }}

‎.github/workflows/coverage-report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Create and upload coverage
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- uses: ./.github/actions/coverage-report
1818
with:

‎.github/workflows/nightly-macos-x86_64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
OPENSSL_ROOT_DIR: /usr/local/opt/openssl/
4848

4949
steps:
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v4
5151

5252
- uses: ./.github/actions/build-test/macos-x86_64
5353
with:

‎.github/workflows/nightly-ubuntu-i386.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
(${{ matrix.build_type.type }}, ${{ matrix.shared_libs.name }}, ${{matrix.boost.version}},${{ matrix.with_openssl.name }})
4747
4848
steps:
49-
- uses: actions/checkout@v1
49+
- uses: actions/checkout@v4
5050

5151
- uses: ./.github/actions/build-test/ubuntu-x86_64
5252
with:

‎.github/workflows/nightly-ubuntu-x86_64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
(${{ matrix.build_type.type }}, ${{ matrix.shared_libs.name }}, ${{matrix.boost.version}}, ${{ matrix.with_openssl.name }})
4545
4646
steps:
47-
- uses: actions/checkout@v2
47+
- uses: actions/checkout@v4
4848

4949
- uses: ./.github/actions/build-test/ubuntu-x86_64
5050
with:

‎.github/workflows/nightly-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
(${{ matrix.vc_boost.name }}, ${{ matrix.arch.address_model }}, ${{ matrix.build_type }}, ${{ matrix.shared_libs.name }}, ${{ matrix.with_openssl.name }})
7676
7777
steps:
78-
- uses: actions/checkout@v2
78+
- uses: actions/checkout@v4
7979

8080
- name: Cache Boost Version
8181
id: cache-boost
@@ -88,7 +88,7 @@ jobs:
8888
8989
- name: Cache Thrift Version
9090
id: cache-thrift
91-
uses: actions/cache@v3
91+
uses: actions/cache@v4
9292
with:
9393
path: C:\Thrift
9494
key: ${{ matrix.vc_boost.image }}-${{ matrix.arch.address_model }}-thrift-0.13-${{ matrix.build_type }}

0 commit comments

Comments
 (0)