Skip to content

Commit 15c0a96

Browse files
author
Johan Vos
committedMar 5, 2025
8315873: [GHA] Update checkout and cache action to use v4
Reviewed-by: jpereda Backport-of: 6ec588c5635964769b354bce37e68d7a6c00985a
1 parent 99f04d1 commit 15c0a96

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎.github/workflows/submit.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
steps:
7777
- name: Checkout the source
78-
uses: actions/checkout@v2
78+
uses: actions/checkout@v4
7979
with:
8080
path: jfx
8181

@@ -92,7 +92,7 @@ jobs:
9292
# FIXME: enable cache for boot JDK
9393
# - name: Restore boot JDK from cache
9494
# id: bootjdk
95-
# uses: actions/cache@v2
95+
# uses: actions/cache@v4
9696
# with:
9797
# path: ~/bootjdk/${{ env.BOOT_JDK_VERSION }}
9898
# key: bootjdk-${{ runner.os }}-${{ env.BOOT_JDK_VERSION }}-${{ env.BOOT_JDK_SHA256 }}-v1
@@ -158,7 +158,7 @@ jobs:
158158

159159
steps:
160160
- name: Checkout the source
161-
uses: actions/checkout@v2
161+
uses: actions/checkout@v4
162162
with:
163163
path: jfx
164164

@@ -174,7 +174,7 @@ jobs:
174174
# FIXME: enable cache for boot JDK
175175
# - name: Restore boot JDK from cache
176176
# id: bootjdk
177-
# uses: actions/cache@v2
177+
# uses: actions/cache@v4
178178
# with:
179179
# path: ~/bootjdk/${{ env.BOOT_JDK_VERSION }}
180180
# key: bootjdk-${{ runner.os }}-${{ env.BOOT_JDK_VERSION }}-${{ env.BOOT_JDK_SHA256 }}-v1
@@ -245,14 +245,14 @@ jobs:
245245

246246
steps:
247247
- name: Checkout the source
248-
uses: actions/checkout@v2
248+
uses: actions/checkout@v4
249249
with:
250250
path: jfx
251251

252252
# FIXME: enable cache for boot JDK
253253
# - name: Restore boot JDK from cache
254254
# id: bootjdk
255-
# uses: actions/cache@v2
255+
# uses: actions/cache@v4
256256
# with:
257257
# path: ~/bootjdk/${{ env.BOOT_JDK_VERSION }}
258258
# key: bootjdk-${{ runner.os }}-${{ env.BOOT_JDK_VERSION }}-${{ env.BOOT_JDK_SHA256 }}-v1
@@ -267,7 +267,7 @@ jobs:
267267
268268
- name: Restore cygwin packages from cache
269269
id: cygwin
270-
uses: actions/cache@v2
270+
uses: actions/cache@v4
271271
with:
272272
path: ~/cygwin/packages
273273
key: cygwin-packages-${{ runner.os }}-v1

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Mar 5, 2025

@openjdk-notifier[bot]
Please sign in to comment.