Skip to content

Commit 048772e

Browse files
committed
Update workflows to use newer actions versions
(merge main -> ce/main 112332) [git-p4: depot-paths = "//dev/coherence-ce/main/": change = 112333]
1 parent 6c721ca commit 048772e

File tree

7 files changed

+25
-25
lines changed

7 files changed

+25
-25
lines changed

.github/workflows/build-examples.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fail-fast: false
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

3838
- name: Set up JDK
3939
uses: oracle-actions/setup-java@v1
@@ -45,7 +45,7 @@ jobs:
4545
run: mvn -version
4646

4747
- name: Cache Maven packages
48-
uses: actions/cache@v3
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/.m2
5151
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -67,31 +67,31 @@ jobs:
6767
6868
# Upload build artifacts for diagnosing failures
6969
- name: Build Artifacts test logs
70-
uses: actions/upload-artifact@v3
70+
uses: actions/upload-artifact@v4
7171
if: failure()
7272
with:
7373
name: test-output
7474
path: prj/examples/**/target/test-output/**/*
7575
if-no-files-found: ignore
7676

7777
- name: Build Artifacts test reports
78-
uses: actions/upload-artifact@v3
78+
uses: actions/upload-artifact@v4
7979
if: failure()
8080
with:
8181
name: failsafe-surefire-test-reports
8282
path: prj/examples/**/target/*-reports/**/*
8383
if-no-files-found: ignore
8484

8585
- name: Build Artifacts core dumps
86-
uses: actions/upload-artifact@v3
86+
uses: actions/upload-artifact@v4
8787
if: failure()
8888
with:
8989
name: core-dumps
9090
path: prj/examples/**/core.*
9191
if-no-files-found: ignore
9292

9393
- name: Build Artifacts compiler replays
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
if: failure()
9696
with:
9797
name: compiler-replay-logs

.github/workflows/build-windows.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- stage13
4949
steps:
5050
- name: Checkout
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252

5353
- name: Set up JDK
5454
uses: oracle-actions/setup-java@v1
@@ -60,7 +60,7 @@ jobs:
6060
run: mvn -version
6161

6262
- name: Cache Maven packages
63-
uses: actions/cache@v3
63+
uses: actions/cache@v4
6464
with:
6565
path: ~/.m2
6666
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -82,31 +82,31 @@ jobs:
8282
8383
# Upload build artifacts for diagnosing failures
8484
- name: Build Artifacts test logs
85-
uses: actions/upload-artifact@v3
85+
uses: actions/upload-artifact@v4
8686
if: failure()
8787
with:
8888
name: test-output-${{ matrix.stage }}
8989
path: prj/**/target/test-output/**/*
9090
if-no-files-found: ignore
9191

9292
- name: Build Artifacts test reports
93-
uses: actions/upload-artifact@v3
93+
uses: actions/upload-artifact@v4
9494
if: failure()
9595
with:
9696
name: failsafe-surefire-test-reports-${{ matrix.stage }}
9797
path: prj/**/target/*-reports/**/*
9898
if-no-files-found: ignore
9999

100100
- name: Build Artifacts core dumps
101-
uses: actions/upload-artifact@v3
101+
uses: actions/upload-artifact@v4
102102
if: failure()
103103
with:
104104
name: core-dumps-${{ matrix.stage }}
105105
path: prj/**/core.*
106106
if-no-files-found: ignore
107107

108108
- name: Build Artifacts compiler replays
109-
uses: actions/upload-artifact@v3
109+
uses: actions/upload-artifact@v4
110110
if: failure()
111111
with:
112112
name: compiler-replay-logs-${{ matrix.stage }}

.github/workflows/build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
steps:
5151
- name: Checkout
52-
uses: actions/checkout@v3
52+
uses: actions/checkout@v4
5353

5454
- name: Set up JDK
5555
uses: oracle-actions/setup-java@v1
@@ -61,7 +61,7 @@ jobs:
6161
run: mvn -version
6262

6363
- name: Cache Maven packages
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
with:
6666
path: ~/.m2
6767
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -83,31 +83,31 @@ jobs:
8383
8484
# Upload build artifacts for diagnosing failures
8585
- name: Build Artifacts test logs
86-
uses: actions/upload-artifact@v3
86+
uses: actions/upload-artifact@v4
8787
if: failure()
8888
with:
8989
name: test-output-${{ matrix.stage }}
9090
path: prj/**/target/test-output/**/*
9191
if-no-files-found: ignore
9292

9393
- name: Build Artifacts test reports
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
if: failure()
9696
with:
9797
name: failsafe-surefire-test-reports-${{ matrix.stage }}
9898
path: prj/**/target/*-reports/**/*
9999
if-no-files-found: ignore
100100

101101
- name: Build Artifacts core dumps
102-
uses: actions/upload-artifact@v3
102+
uses: actions/upload-artifact@v4
103103
if: failure()
104104
with:
105105
name: core-dumps-${{ matrix.stage }}
106106
path: prj/**/core.*
107107
if-no-files-found: ignore
108108

109109
- name: Build Artifacts compiler replays
110-
uses: actions/upload-artifact@v3
110+
uses: actions/upload-artifact@v4
111111
if: failure()
112112
with:
113113
name: compiler-replay-logs-${{ matrix.stage }}

.github/workflows/deploy-snapshots-java11.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929

3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
with:
3333
fetch-depth: 0
3434

@@ -39,7 +39,7 @@ jobs:
3939
java-version: '11'
4040

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

.github/workflows/deploy-snapshots-java17.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929

3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
with:
3333
fetch-depth: 0
3434

@@ -39,7 +39,7 @@ jobs:
3939
release: 17
4040

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

.github/workflows/deploy-snapshots.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929

3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
with:
3333
fetch-depth: 0
3434

@@ -39,7 +39,7 @@ jobs:
3939
release: 21
4040

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

.github/workflows/gh-pages-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838
- name: Setup Pages
3939
uses: actions/configure-pages@v3
4040
- name: Build with Jekyll

0 commit comments

Comments
 (0)