1
1
#
2
- # Copyright (c) 2024 Oracle and/or its affiliates.
2
+ # Copyright (c) 2024, 2025 Oracle and/or its affiliates.
3
3
#
4
4
# Licensed under the Apache License, Version 2.0 (the "License");
5
5
# you may not use this file except in compliance with the License.
84
84
java-version : ${{ env.JAVA_VERSION }}
85
85
- name : Cache local Maven repository (read-write)
86
86
if : ${{ inputs.maven-cache == 'read-write' }}
87
- uses : actions/cache@v4.0.2
87
+ uses : actions/cache@v4.2.0
88
88
with :
89
89
# See https://github.com/actions/toolkit/issues/713
90
90
# Include must not match top level directories
98
98
local-maven-
99
99
- name : Cache local Maven repository (read-only)
100
100
if : ${{ inputs.maven-cache == 'read-only' }}
101
- uses : actions/cache/restore@v4.0.2
101
+ uses : actions/cache/restore@v4.2.0
102
102
with :
103
103
path : |
104
104
.m2/repository/**/*.*
@@ -109,7 +109,7 @@ runs:
109
109
local-maven-
110
110
- name : Build cache (read-write)
111
111
if : ${{ inputs.build-cache == 'read-write' }}
112
- uses : actions/cache@v4.0.2
112
+ uses : actions/cache@v4.2.0
113
113
with :
114
114
path : |
115
115
./**/target/**
@@ -121,7 +121,7 @@ runs:
121
121
build-cache-${{ github.run_id }}-
122
122
- name : Build cache (read-only)
123
123
if : ${{ inputs.build-cache == 'read-only' }}
124
- uses : actions/cache/restore@v4.0.2
124
+ uses : actions/cache/restore@v4.2.0
125
125
with :
126
126
path : |
127
127
./**/target/**
0 commit comments