You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/actions/maven-cache/action.yml
+30-12
Original file line number
Diff line number
Diff line change
@@ -25,21 +25,14 @@ runs:
25
25
# Two asterisks are needed to make the follow-up exclusion work
26
26
# see https://github.com/actions/toolkit/issues/713 for the upstream issue
27
27
path: |
28
-
~/.m2/repository/*/*
28
+
~/.m2/repository/*/*/*/*
29
29
!~/.m2/repository/org/keycloak
30
+
!~/.m2/repository/com/github/eirslett/node
31
+
!~/.m2/repository/com/github/eirslett/pnpm
30
32
key: ${{ steps.weekly-cache-key.outputs.key }}
31
33
# Enable cross-os archive use the cache on both Linux and Windows
32
34
enableCrossOsArchive: true
33
35
34
-
- id: download-node-for-windows
35
-
# This is necessary as the build which creates the cache will run on a Linux node and therefore will never download the Windows artifact by default.
36
-
# If we wouldn't download it manually, it would be downloaded on each Windows build, which proved to be unstable as downloads would randomly fail in the middle of the download.
0 commit comments