Skip to content

Commit 3da2c04

Browse files
chore(deps): update github actions (major) (#34)
chore(deps): update github actions Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
1 parent b423d55 commit 3da2c04

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build_cache.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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 }}
@@ -27,7 +27,7 @@ jobs:
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 }}

.github/workflows/maven-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
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

.github/workflows/maven-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)