Skip to content

Commit 2267172

Browse files
authored
Fix remote integ tests (#488)
* Bump to version 3.0.0.0-alpha1 Signed-off-by: Jiaping Zeng <[email protected]> * Bump to version 3.0.0.0-alpha1 Signed-off-by: Jiaping Zeng <[email protected]> * updating actions/cache Signed-off-by: Jiaping Zeng <[email protected]> * updated java version to 21 Signed-off-by: Jiaping Zeng <[email protected]> --------- Signed-off-by: Jiaping Zeng <[email protected]>
1 parent deb0894 commit 2267172

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/remote-integ-tests-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-latest, windows-latest]
18-
java: [11]
18+
java: [21]
1919
include:
2020
- os: windows-latest
2121
cypress_cache_folder: ~/AppData/Local/Cypress/Cache
2222
- os: ubuntu-latest
2323
cypress_cache_folder: ~/.cache/Cypress
2424
runs-on: ${{ matrix.os }}
2525
steps:
26-
- name: Set up Java 11
26+
- name: Set up Java 21
2727
uses: actions/setup-java@v3
2828
with:
2929
distribution: 'corretto'
30-
java-version: '11'
30+
java-version: '21'
3131

3232
- uses: actions/checkout@v2
3333
- name: Fetch Version Information
@@ -144,7 +144,7 @@ jobs:
144144
145145
- name: Cache Cypress
146146
id: cache-cypress
147-
uses: actions/cache@v1
147+
uses: actions/cache@v4
148148
with:
149149
path: ${{ matrix.cypress_cache_folder }}
150150
key: cypress-cache-v2-${{ runner.os }}-${{ hashFiles('**/package.json') }}

0 commit comments

Comments
 (0)