File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ jobs:
1212 runs-on : ubuntu-latest
1313
1414 steps :
15- - uses : actions/checkout@v5
15+ - uses : actions/checkout@v6
1616
1717 - name : Restore .m2 repository packages from cache
18- uses : actions/cache/restore@v4
18+ uses : actions/cache/restore@v5
1919 with :
2020 path : ~/.m2
2121 key : m2-cache-${{ github.run_id }}
2727 echo "PRE_CACHE_HASH=$jar_hash" >> $GITHUB_ENV
2828
2929 - name : Restore pip package cache
30- uses : actions/cache/restore@v4
30+ uses : actions/cache/restore@v5
3131 with :
3232 path : ~/.cache/pip
3333 key : pip-cache-${{ github.run_id }}
@@ -73,14 +73,14 @@ jobs:
7373
7474 - name : Save .m2 repository packages to cache
7575 if : env.PRE_CACHE_HASH != env.POST_CACHE_HASH
76- uses : actions/cache/save@v4
76+ uses : actions/cache/save@v5
7777 with :
7878 path : ~/.m2
7979 key : m2-cache-${{ github.run_id }}
8080
8181 - name : Save pip packages to cache
8282 if : env.PRE_PIP_HASH != env.POST_PIP_HASH
83- uses : actions/cache/save@v4
83+ uses : actions/cache/save@v5
8484 with :
8585 path : ~/.cache/pip
8686 key : pip-cache-${{ github.run_id }}
Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010
1111 steps :
12- - uses : actions/checkout@v5
12+ - uses : actions/checkout@v6
1313
1414 - name : Cache Maven packages
15- uses : actions/cache/restore@v4
15+ uses : actions/cache/restore@v5
1616 with :
1717 path : ~/.m2
1818 key : m2-cache
1919 restore-keys : m2-cache-
2020
2121 - name : Cache Pip Packages
22- uses : actions/cache/restore@v4
22+ uses : actions/cache/restore@v5
2323 with :
2424 path : ~/.cache/pip
2525 key : pip-cache
Original file line number Diff line number Diff line change @@ -17,17 +17,17 @@ jobs:
1717 packages : write
1818
1919 steps :
20- - uses : actions/checkout@v5
20+ - uses : actions/checkout@v6
2121
2222 - name : Cache Maven packages
23- uses : actions/cache/restore@v4
23+ uses : actions/cache/restore@v5
2424 with :
2525 path : ~/.m2
2626 key : m2-cache
2727 restore-keys : m2-cache-
2828
2929 - name : Cache Pip Packages
30- uses : actions/cache/restore@v4
30+ uses : actions/cache/restore@v5
3131 with :
3232 path : ~/.cache/pip
3333 key : pip-cache
You can’t perform that action at this time.
0 commit comments