@@ -109,7 +109,7 @@ jobs:
109109 sudo echo "127.0.0.1 repo.scala-sbt.org" | sudo tee -a /etc/hosts
110110 sudo echo "127.0.0.1 repo.typesafe.com" | sudo tee -a /etc/hosts
111111 - name : Checkout
112- uses : actions/checkout@v4
112+ uses : actions/checkout@v6
113113 with :
114114 # we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
115115 fetch-depth : 0
@@ -121,14 +121,14 @@ jobs:
121121
122122 - name : Coursier Cache
123123 id : coursier-cache
124- uses : coursier/cache-action@v6
124+ uses : coursier/cache-action@v8
125125 with :
126126 ignoreJob : ${{ inputs.ignore-job-coursier-cache }}
127127 ignoreMatrix : ${{ inputs.ignore-matrix-coursier-cache }}
128128 extraKey : ${{ inputs.extra-coursier-cache-key }}
129129
130130 - name : Gradle Cache
131- uses : burrunan/gradle-cache-action@v2
131+ uses : burrunan/gradle-cache-action@v3
132132 with :
133133 build-root-directory : ${{ inputs.gradle-build-root }}
134134 # Disable caching of ~/.gradle/caches/build-cache-*
@@ -137,14 +137,14 @@ jobs:
137137 save-maven-dependencies-cache : false
138138
139139 - name : Custom Cache
140- uses : actions/cache@v4
140+ uses : actions/cache@v5
141141 if : ${{ inputs.cache-key != '' && inputs.cache-path != '' }}
142142 with :
143143 key : ${{ format(inputs.cache-key, matrix.java) }}
144144 path : ${{ inputs.cache-path }}
145145
146146 - name : Install Adoptium Temurin OpenJDK
147- uses : coursier/setup-action@v1
147+ uses : coursier/setup-action@v3
148148 with :
149149 jvm : adoptium:${{ matrix.java }}
150150 jvm-index : ${{ inputs.java-index }}
0 commit comments