Skip to content

Commit 9e7817f

Browse files
rohanpadhyeclaude
andcommitted
ci: bump deprecated actions/checkout and actions/cache to v4 in apidocs workflow
The build-javadoc-and-deploy job used actions/cache@v2 and actions/checkout@v2, which are deprecated and now fail. Bump both to v4 to match ci.yml. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 1c9243c commit 9e7817f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/apidocs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
build-javadoc-and-deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: Checkout latest # release or manually selected ref
12-
uses: actions/checkout@v2
11+
- name: Checkout latest # release or manually selected ref
12+
uses: actions/checkout@v4
1313

1414
- name: Cache Maven dependencies
15-
uses: actions/cache@v2
15+
uses: actions/cache@v4
1616
with:
1717
path: ~/.m2/repository
1818
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)