Skip to content

Commit 9117e0c

Browse files
authored
Update github action version to v4
pr-link: #18702 change-id: cid-b4b1fb88de0b1a2cca107fe252f62b0fc6463fcb
1 parent 6d99656 commit 9117e0c

6 files changed

+30
-30
lines changed

.github/workflows/checkstyle.yml

+5-5
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') }}
@@ -40,10 +40,10 @@ jobs:
4040

4141
- name: Archive artifacts
4242
continue-on-error: true
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
if: always()
4545
with:
46-
name: artifact
46+
name: artifact-${{ matrix.runs-on }}
4747
path: |
4848
**/target/artifacts/*
4949
**/target/logs/*

.github/workflows/java8_container_tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ jobs:
2222

2323
steps:
2424
- name: checkout repo
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

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

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

3838
- name: Cache local Go modules
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: ~/go/pkg/mod
4242
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.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ jobs:
3333

3434
steps:
3535
- name: checkout repo
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

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

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

4949
- name: Cache local Go modules
50-
uses: actions/cache@v3
50+
uses: actions/cache@v4
5151
with:
5252
path: ~/go/pkg/mod
5353
key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -65,10 +65,10 @@ jobs:
6565

6666
- name: Archive artifacts
6767
continue-on-error: true
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
if: always()
7070
with:
71-
name: artifact
71+
name: artifact-${{ matrix.runs-on }}
7272
path: |
7373
**/target/surefire-reports/*
7474
**/target/artifacts/*

.github/workflows/java8_integration_tests_ft.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ jobs:
2626

2727
steps:
2828
- name: checkout repo
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
- name: Use Node.js ${{ matrix.node-version }}
3232
uses: actions/setup-node@v1
3333
with:
3434
node-version: '10.11.0'
3535

3636
- name: Cache local Maven repository
37-
uses: actions/cache@v3
37+
uses: actions/cache@v4
3838
with:
3939
path: ~/.m2/repository
4040
key: ${{ runner.os }}-maven-java11-${{ hashFiles('**/pom.xml') }}
4141

4242
- name: Cache local Go modules
43-
uses: actions/cache@v3
43+
uses: actions/cache@v4
4444
with:
4545
path: ~/go/pkg/mod
4646
key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -60,10 +60,10 @@ jobs:
6060

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

.github/workflows/java8_integration_tests_webui.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ jobs:
2424

2525
steps:
2626
- name: checkout repo
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

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

3434
- name: Cache local Maven repository
35-
uses: actions/cache@v3
35+
uses: actions/cache@v4
3636
with:
3737
path: ~/.m2/repository
3838
key: ${{ runner.os }}-maven-java11-${{ hashFiles('**/pom.xml') }}
3939

4040
- name: Cache local Go modules
41-
uses: actions/cache@v3
41+
uses: actions/cache@v4
4242
with:
4343
path: ~/go/pkg/mod
4444
key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -56,10 +56,10 @@ jobs:
5656

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

.github/workflows/java8_unit_tests.yml

+5-5
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-java11-${{ 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)