Skip to content

Commit e1f4443

Browse files
authored
Update github action version to v4
Cherry-pick of existing commit. orig-pr: #18702 orig-commit: 9117e0c orig-commit-author: Rico Chiu <[email protected]> pr-link: #18704 change-id: cid-b4b1fb88de0b1a2cca107fe252f62b0fc6463fcb
1 parent c0cea82 commit e1f4443

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

.github/workflows/checkstyle.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ jobs:
88

99
steps:
1010
- name: checkout repo
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Use Node.js ${{ matrix.node-version }}
1414
uses: actions/setup-node@v1
1515
with:
1616
node-version: '10.11.0'
1717

1818
- name: Cache local Maven repository
19-
uses: actions/cache@v3
19+
uses: actions/cache@v4
2020
with:
2121
path: ~/.m2/repository
2222
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2323
restore-keys: |
2424
${{ runner.os }}-maven-
2525
2626
- name: Cache local Go modules
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/go/pkg/mod
3030
key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -41,10 +41,10 @@ jobs:
4141

4242
- name: Archive artifacts
4343
continue-on-error: true
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
if: always()
4646
with:
47-
name: artifact
47+
name: artifact-${{ matrix.runs-on }}
4848
path: |
4949
**/target/artifacts/*
5050
**/target/logs/*

.github/workflows/fuse_integration_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ jobs:
1818

1919
steps:
2020
- name: checkout repo
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Use Node.js ${{ matrix.node-version }}
2424
uses: actions/setup-node@v1
2525
with:
2626
node-version: '10.11.0'
2727

2828
- name: Cache local Maven repository
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: ~/.m2/repository
3232
key: ${{ runner.os }}-maven-java${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
3333

3434
- name: Cache local Go modules
35-
uses: actions/cache@v3
35+
uses: actions/cache@v4
3636
with:
3737
path: ~/go/pkg/mod
3838
key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -50,10 +50,10 @@ jobs:
5050

5151
- name: Archive artifacts
5252
continue-on-error: true
53-
uses: actions/upload-artifact@v3
53+
uses: actions/upload-artifact@v4
5454
if: always()
5555
with:
56-
name: artifact
56+
name: artifact-${{ matrix.runs-on }}
5757
path: |
5858
**/target/surefire-reports/*
5959
**/target/artifacts/*

.github/workflows/java8_integration_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,21 @@ jobs:
3131

3232
steps:
3333
- name: checkout repo
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- name: Use Node.js ${{ matrix.node-version }}
3737
uses: actions/setup-node@v1
3838
with:
3939
node-version: '10.11.0'
4040

4141
- name: Cache local Maven repository
42-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4343
with:
4444
path: ~/.m2/repository
4545
key: ${{ runner.os }}-maven-java8-${{ hashFiles('**/pom.xml') }}
4646

4747
- name: Cache local Go modules
48-
uses: actions/cache@v3
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/go/pkg/mod
5151
key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -63,10 +63,10 @@ jobs:
6363

6464
- name: Archive artifacts
6565
continue-on-error: true
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
if: always()
6868
with:
69-
name: artifact
69+
name: artifact-${{ matrix.runs-on }}
7070
path: |
7171
**/target/surefire-reports/*
7272
**/target/artifacts/*

.github/workflows/java8_integration_tests_ft.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ jobs:
2121

2222
steps:
2323
- name: checkout repo
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Use Node.js ${{ matrix.node-version }}
2727
uses: actions/setup-node@v1
2828
with:
2929
node-version: '10.11.0'
3030

3131
- name: Cache local Maven repository
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.m2/repository
3535
key: ${{ runner.os }}-maven-java8-${{ hashFiles('**/pom.xml') }}
3636

3737
- name: Cache local Go modules
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/go/pkg/mod
4141
key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -55,10 +55,10 @@ jobs:
5555

5656
- name: Archive artifacts
5757
continue-on-error: true
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
if: always()
6060
with:
61-
name: artifact
61+
name: artifact-${{ matrix.runs-on }}
6262
path: |
6363
**/target/surefire-reports/*
6464
**/target/artifacts/*

.github/workflows/java8_integration_tests_webui.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ jobs:
1919

2020
steps:
2121
- name: checkout repo
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Use Node.js ${{ matrix.node-version }}
2525
uses: actions/setup-node@v1
2626
with:
2727
node-version: '10.11.0'
2828

2929
- name: Cache local Maven repository
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: ~/.m2/repository
3333
key: ${{ runner.os }}-maven-java8-${{ hashFiles('**/pom.xml') }}
3434

3535
- name: Cache local Go modules
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: ~/go/pkg/mod
3939
key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -51,10 +51,10 @@ jobs:
5151

5252
- name: Archive artifacts
5353
continue-on-error: true
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
if: always()
5656
with:
57-
name: artifact
57+
name: artifact-${{ matrix.runs-on }}
5858
path: |
5959
**/target/surefire-reports/*
6060
**/target/artifacts/*

.github/workflows/java8_unit_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ jobs:
2121

2222
steps:
2323
- name: checkout repo
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Use Node.js ${{ matrix.node-version }}
2727
uses: actions/setup-node@v1
2828
with:
2929
node-version: '10.11.0'
3030

3131
- name: Cache local Maven repository
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.m2/repository
3535
key: ${{ runner.os }}-maven-java8-${{ hashFiles('**/pom.xml') }}
3636

3737
- name: Cache local Go modules
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/go/pkg/mod
4141
key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -53,10 +53,10 @@ jobs:
5353

5454
- name: Archive artifacts
5555
continue-on-error: true
56-
uses: actions/upload-artifact@v3
56+
uses: actions/upload-artifact@v4
5757
if: always()
5858
with:
59-
name: artifact
59+
name: artifact-${{ matrix.runs-on }}
6060
path: |
6161
**/target/surefire-reports/*
6262
**/target/artifacts/*

0 commit comments

Comments
 (0)